2002-12-16 04:49:21 -06:00
|
|
|
SUBDIRS = examples
|
2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
doc_DATA = \
|
|
|
|
README.francais \
|
|
|
|
README.german \
|
2007-07-08 05:51:32 -05:00
|
|
|
README-de.win32-bin.txt \
|
2007-07-09 14:23:59 -05:00
|
|
|
README-fr.win32-bin.txt \
|
2009-01-05 04:40:33 -06:00
|
|
|
README-it.win32-bin.txt \
|
2010-06-17 04:34:29 -05:00
|
|
|
README-lv.win32-bin.txt \
|
2010-02-24 12:30:30 -06:00
|
|
|
README-nl.win32-bin.txt \
|
2010-05-14 03:36:59 -05:00
|
|
|
README-zh_CN.win32-bin.txt \
|
2011-03-01 13:44:05 -06:00
|
|
|
README-zh_TW.win32-bin.txt \
|
2007-06-16 04:47:09 -05:00
|
|
|
README.win32-bin.txt \
|
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
|
|
|
|
2013-03-29 17:56:03 -05:00
|
|
|
dist_man_MANS = \
|
2012-09-24 11:42:28 -05:00
|
|
|
gnucash.1 \
|
|
|
|
gnc-fq-dump.1 \
|
|
|
|
gnc-fq-helper.1
|
2000-06-02 04:00:31 -05:00
|
|
|
|
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} \
|
2000-06-02 04:00:31 -05:00
|
|
|
README.build-system \
|
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 \
|
2005-11-01 21:32:36 -06:00
|
|
|
gnucash.1.in \
|
2006-02-23 16:25:02 -06:00
|
|
|
gtkrc-2.0.gnucash \
|
2011-11-14 13:43:20 -06:00
|
|
|
misc-notes.txt \
|
2017-07-10 13:06:31 -05:00
|
|
|
tip_of_the_day.list.in \
|
|
|
|
CMakeLists.txt
|
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
|
|
|
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
|
2009-11-23 13:46:55 -06:00
|
|
|
${CC} -E -P -x c -D'N_(x)=x' -o $@.tmp $<
|
2010-04-28 08:23:27 -05:00
|
|
|
cat -s $@.tmp | ${SED} -e 's/^ *"//' \
|
|
|
|
-e 's/"* *[|] */|/' \
|
|
|
|
-e 's:@-GNUCASH_LATEST_STABLE_SERIES-@:${GNUCASH_LATEST_STABLE_SERIES}:g' > $@
|
2005-11-01 21:32:36 -06:00
|
|
|
rm -f $@.tmp
|
2013-01-22 04:14:51 -06:00
|
|
|
if PLATFORM_WIN32
|
|
|
|
perl -pi.bak -e 's/" *$$//' $@
|
|
|
|
else
|
|
|
|
perl -pi.bak -e 's/" *$$/\n/' $@
|
|
|
|
endif
|
2005-11-01 21:32:36 -06:00
|
|
|
|
2013-03-30 16:31:17 -05:00
|
|
|
DISTCLEANFILES = \
|
|
|
|
gnucash.1 \
|
|
|
|
tip_of_the_day.list \
|
|
|
|
tip_of_the_day.list.bak
|