2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
docdir = ${GNC_DOC_INSTALL_DIR}
|
|
|
|
|
2002-12-16 04:49:21 -06:00
|
|
|
SUBDIRS = examples
|
2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
doc_DATA = \
|
|
|
|
README.francais \
|
|
|
|
README.german \
|
2000-09-09 05:48:53 -05:00
|
|
|
guile-hackers.txt \
|
2000-12-20 18:35:47 -06:00
|
|
|
projects.html
|
2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
man_MANS = \
|
|
|
|
gnc-prices.1 \
|
|
|
|
gnucash.1
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2000-06-05 00:51:39 -05:00
|
|
|
.cvsignore \
|
|
|
|
${doc_DATA} \
|
2000-09-09 05:48:53 -05:00
|
|
|
RAW-NOTES \
|
2000-06-02 04:00:31 -05:00
|
|
|
README.build-system \
|
2000-06-05 00:51:39 -05:00
|
|
|
README.francais \
|
|
|
|
README.german \
|
2002-11-24 17:10:08 -06:00
|
|
|
README.HBCI \
|
2000-07-08 04:38:25 -05:00
|
|
|
README.translator.txt \
|
2000-06-02 04:00:31 -05:00
|
|
|
build-aix.txt \
|
|
|
|
build-solaris.txt \
|
|
|
|
build-suse.txt \
|
|
|
|
gnome-hackers.txt \
|
2002-09-26 11:57:18 -05: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
|