2000-06-02 09:00:31 +00:00
|
|
|
|
|
|
|
|
docdir = ${GNC_DOC_INSTALL_DIR}
|
|
|
|
|
|
2002-12-16 10:49:21 +00:00
|
|
|
SUBDIRS = examples
|
2000-06-02 09:00:31 +00:00
|
|
|
|
|
|
|
|
doc_DATA = \
|
|
|
|
|
README.francais \
|
|
|
|
|
README.german \
|
2000-09-09 10:48:53 +00:00
|
|
|
guile-hackers.txt \
|
2000-12-21 00:35:47 +00:00
|
|
|
projects.html
|
2000-06-02 09:00:31 +00:00
|
|
|
|
|
|
|
|
man_MANS = \
|
|
|
|
|
gnc-prices.1 \
|
|
|
|
|
gnucash.1
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2000-06-05 05:51:39 +00:00
|
|
|
.cvsignore \
|
|
|
|
|
${doc_DATA} \
|
2000-09-09 10:48:53 +00:00
|
|
|
RAW-NOTES \
|
2000-06-02 09:00:31 +00:00
|
|
|
README.build-system \
|
2000-06-05 05:51:39 +00:00
|
|
|
README.francais \
|
|
|
|
|
README.german \
|
2002-11-24 23:10:08 +00:00
|
|
|
README.HBCI \
|
2003-02-03 01:30:13 +00:00
|
|
|
README.OFX \
|
2000-07-08 09:38:25 +00:00
|
|
|
README.translator.txt \
|
2003-06-12 21:28:24 +00:00
|
|
|
TRANSLATION_HOWTO \
|
2000-06-02 09:00:31 +00:00
|
|
|
build-aix.txt \
|
|
|
|
|
build-solaris.txt \
|
|
|
|
|
build-suse.txt \
|
2003-01-20 17:11:50 +00:00
|
|
|
generic_objects.txt \
|
2000-06-02 09:00:31 +00:00
|
|
|
gnome-hackers.txt \
|
2002-09-26 16:57:18 +00:00
|
|
|
gnc-prices.1.in \
|
|
|
|
|
gnucash.1.in
|
|
|
|
|
|
|
|
|
|
## We borrow guile's convention and use @-...-@ as the substitution
|
|
|
|
|
## brackets here, instead of the usual @...@. This prevents autoconf
|
|
|
|
|
## from substituting the values directly into the left-hand sides of
|
|
|
|
|
## the sed substitutions.
|
|
|
|
|
gnc-prices.1: gnc-prices.1.in
|
|
|
|
|
rm -f $@.tmp
|
|
|
|
|
sed < $< > $@.tmp \
|
|
|
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
|
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
|
|
|
chmod +x $@.tmp
|
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
|
|
|
|
gnucash.1: gnucash.1.in
|
|
|
|
|
rm -f $@.tmp
|
|
|
|
|
sed < $< > $@.tmp \
|
|
|
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
|
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
|
|
|
chmod +x $@.tmp
|
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
|
|
|
|
DISTCLEANFILES = gnc-prices.1 gnucash.1
|