Files
gnucash/doc/Makefile.am
T

63 lines
1.5 KiB
Makefile
Raw Normal View History

2002-12-16 10:49:21 +00:00
SUBDIRS = examples
2000-06-02 09:00:31 +00:00
2005-11-02 03:32:36 +00:00
docdir = ${GNC_DOC_INSTALL_DIR}
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 \
projects.html
2000-06-02 09:00:31 +00:00
man_MANS = \
gnc-prices.1 \
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 \
2000-06-05 05:51:39 +00:00
README.francais \
README.german \
2002-11-24 23:10:08 +00:00
README.HBCI \
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 \
2005-11-02 03:32:36 +00:00
gnucash.1.in \
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.
gnc-prices.1: gnc-prices.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 $@
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 $@
tip_of_the_day.list: tip_of_the_day.list.in Makefile
2005-11-02 03:32:36 +00:00
gcc -E -P -x c -D'N_(x)=x' -o $@.tmp $<
2006-01-22 00:27:11 +00:00
cat -s $@.tmp | ${SED} -e 's/^ *\"\(.*\)\" *$$/\1/' > $@
2005-11-02 03:32:36 +00:00
rm -f $@.tmp
DISTCLEANFILES = gnc-prices.1 gnucash.1 tip_of_the_day.list