2002-12-16 04:49:21 -06:00
|
|
|
SUBDIRS = examples
|
2000-06-02 04:00:31 -05:00
|
|
|
|
2005-11-01 21:32:36 -06:00
|
|
|
docdir = ${GNC_DOC_INSTALL_DIR}
|
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
|
|
|
|
|
2005-11-01 21:32:36 -06:00
|
|
|
tipsdir = $(GNC_SHAREDIR)
|
|
|
|
tips_DATA = tip_of_the_day.list
|
|
|
|
|
2000-06-02 04:00:31 -05:00
|
|
|
EXTRA_DIST = \
|
2000-06-05 00:51:39 -05:00
|
|
|
${doc_DATA} \
|
2005-11-06 09:38:59 -06:00
|
|
|
misc-notes.txt \
|
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 \
|
2003-02-02 19:30:13 -06:00
|
|
|
README.OFX \
|
2000-07-08 04:38:25 -05:00
|
|
|
README.translator.txt \
|
2003-06-12 16:28:24 -05:00
|
|
|
TRANSLATION_HOWTO \
|
2000-06-02 04:00:31 -05:00
|
|
|
build-aix.txt \
|
|
|
|
build-solaris.txt \
|
|
|
|
build-suse.txt \
|
2003-01-20 11:11:50 -06:00
|
|
|
generic_objects.txt \
|
2000-06-02 04:00:31 -05:00
|
|
|
gnome-hackers.txt \
|
2002-09-26 11:57:18 -05:00
|
|
|
gnc-prices.1.in \
|
2005-11-01 21:32:36 -06:00
|
|
|
gnucash.1.in \
|
|
|
|
tip_of_the_day.list.in
|
2002-09-26 11:57:18 -05:00
|
|
|
|
|
|
|
## 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.
|
2006-01-13 21:56:53 -06:00
|
|
|
gnc-prices.1: gnc-prices.1.in Makefile
|
2002-09-26 11:57:18 -05:00
|
|
|
rm -f $@.tmp
|
2005-11-06 07:16:09 -06:00
|
|
|
${SED} < $< > $@.tmp \
|
2002-09-26 11:57:18 -05:00
|
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
|
|
chmod +x $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2006-01-13 21:56:53 -06:00
|
|
|
gnucash.1: gnucash.1.in Makefile
|
2002-09-26 11:57:18 -05:00
|
|
|
rm -f $@.tmp
|
2005-11-06 07:16:09 -06:00
|
|
|
${SED} < $< > $@.tmp \
|
2002-09-26 11:57:18 -05:00
|
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
|
|
chmod +x $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
2006-01-13 21:56:53 -06:00
|
|
|
tip_of_the_day.list: tip_of_the_day.list.in Makefile
|
2005-11-01 21:32:36 -06:00
|
|
|
gcc -E -P -x c -D'N_(x)=x' -o $@.tmp $<
|
2006-01-21 18:27:11 -06:00
|
|
|
cat -s $@.tmp | ${SED} -e 's/^ *\"\(.*\)\" *$$/\1/' > $@
|
2005-11-01 21:32:36 -06:00
|
|
|
rm -f $@.tmp
|
|
|
|
|
|
|
|
DISTCLEANFILES = gnc-prices.1 gnucash.1 tip_of_the_day.list
|