2002-12-16 10:49:21 +00:00
|
|
|
SUBDIRS = examples
|
2000-06-02 09:00:31 +00:00
|
|
|
|
|
|
|
|
doc_DATA = \
|
|
|
|
|
README.francais \
|
|
|
|
|
README.german \
|
2007-07-08 10:51:32 +00:00
|
|
|
README-de.win32-bin.txt \
|
2007-07-09 19:23:59 +00:00
|
|
|
README-fr.win32-bin.txt \
|
2009-01-05 10:40:33 +00:00
|
|
|
README-it.win32-bin.txt \
|
2010-06-17 09:34:29 +00:00
|
|
|
README-lv.win32-bin.txt \
|
2010-02-24 18:30:30 +00:00
|
|
|
README-nl.win32-bin.txt \
|
2010-05-14 08:36:59 +00:00
|
|
|
README-zh_CN.win32-bin.txt \
|
2011-03-01 19:44:05 +00:00
|
|
|
README-zh_TW.win32-bin.txt \
|
2007-06-16 09:47:09 +00:00
|
|
|
README.win32-bin.txt \
|
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 = \
|
|
|
|
|
gnucash.1
|
|
|
|
|
|
2005-11-02 03:32:36 +00:00
|
|
|
tipsdir = $(GNC_SHAREDIR)
|
|
|
|
|
tips_DATA = tip_of_the_day.list
|
|
|
|
|
|
2000-06-02 09:00:31 +00:00
|
|
|
EXTRA_DIST = \
|
2000-06-05 05:51:39 +00:00
|
|
|
${doc_DATA} \
|
2005-11-06 15:38:59 +00:00
|
|
|
misc-notes.txt \
|
2000-06-02 09:00:31 +00:00
|
|
|
README.build-system \
|
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 \
|
2003-01-20 17:11:50 +00:00
|
|
|
generic_objects.txt \
|
2000-06-02 09:00:31 +00:00
|
|
|
gnome-hackers.txt \
|
2005-11-02 03:32:36 +00:00
|
|
|
gnucash.1.in \
|
2006-02-23 22:25:02 +00:00
|
|
|
gtkrc-2.0.gnucash \
|
2005-11-02 03:32:36 +00:00
|
|
|
tip_of_the_day.list.in
|
2002-09-26 16:57:18 +00: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-14 03:56:53 +00:00
|
|
|
gnucash.1: gnucash.1.in Makefile
|
2002-09-26 16:57:18 +00:00
|
|
|
rm -f $@.tmp
|
2005-11-06 13:16:09 +00:00
|
|
|
${SED} < $< > $@.tmp \
|
2002-09-26 16:57:18 +00:00
|
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
|
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
|
|
|
chmod +x $@.tmp
|
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
2006-01-14 03:56:53 +00:00
|
|
|
tip_of_the_day.list: tip_of_the_day.list.in Makefile
|
2009-11-23 19:46:55 +00:00
|
|
|
${CC} -E -P -x c -D'N_(x)=x' -o $@.tmp $<
|
2010-04-28 13:23:27 +00:00
|
|
|
cat -s $@.tmp | ${SED} -e 's/^ *"//' \
|
|
|
|
|
-e 's/" *$$//' \
|
|
|
|
|
-e 's/"* *[|] */|/' \
|
|
|
|
|
-e 's:@-GNUCASH_LATEST_STABLE_SERIES-@:${GNUCASH_LATEST_STABLE_SERIES}:g' > $@
|
2005-11-02 03:32:36 +00:00
|
|
|
rm -f $@.tmp
|
|
|
|
|
|
|
|
|
|
DISTCLEANFILES = gnc-prices.1 gnucash.1 tip_of_the_day.list
|