Files
gnucash/doc/Makefile.am
Geert Janssens 9472e9347f Replace ambiguous 'scm' with 'vcs' in macro name
Pointed out by Frank.
2017-10-05 22:47:11 +02:00

79 lines
2.1 KiB
Makefile

SUBDIRS = examples
doc_DATA = \
README.francais \
README.german \
README-ca.win32-bin.txt \
README-de.win32-bin.txt \
README-fr.win32-bin.txt \
README-it.win32-bin.txt \
README-lv.win32-bin.txt \
README-nl.win32-bin.txt \
README-zh_CN.win32-bin.txt \
README-zh_TW.win32-bin.txt \
README.win32-bin.txt \
guile-hackers.txt \
projects.html
dist_man_MANS = \
gnucash.1 \
gnc-fq-dump.1 \
gnc-fq-helper.1
tipsdir = $(GNC_SHAREDIR)
tips_DATA = tip_of_the_day.list
EXTRA_DIST = \
${doc_DATA} \
README.build-system \
README.HBCI \
README.OFX \
README.translator.txt \
TRANSLATION_HOWTO \
build-aix.txt \
build-solaris.txt \
gnucash.1.in \
gtkrc-2.0.gnucash \
misc-notes.txt \
tip_of_the_day.list.in \
CMakeLists.txt
gnucash.1: gnucash.1.in Makefile
rm -f $@.tmp
if BUILDING_FROM_VCS
GNC_VCS_REV_Y_M=`perl -ne 'print if $$_=~s/.*GNC_VCS_REV_Y_M "(.*)"/$$1/' ${top_builddir}/libgnucash/core-utils/gnc-vcs-info.h` ; \
${SED} < $< > $@.tmp \
-e 's:$${VERSION}:${VERSION}:g' \
-e 's:$${DATE}:'$${GNC_VCS_REV_Y_M}':g'
chmod +x $@.tmp
mv $@.tmp $@
else
GNC_VCS_REV_Y_M=`perl -ne 'print if $$_=~s/.*GNC_VCS_REV_Y_M "(.*)"/$$1/' ${top_srcdir}/libgnucash/core-utils/gnc-vcs-info.h` ; \
${SED} < $< > $@.tmp \
-e 's:$${VERSION}:${VERSION}:g' \
-e 's:$${DATE}:'$${GNC_VCS_REV_Y_M}':g'
chmod +x $@.tmp
mv $@.tmp $@
endif
## 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.
tip_of_the_day.list: tip_of_the_day.list.in Makefile
${CC} -E -P -x c -D'N_(x)=x' -o $@.tmp $<
cat -s $@.tmp | ${SED} -e 's/^ *"//' \
-e 's/"* *[|] */|/' \
-e 's:@-GNUCASH_LATEST_STABLE_SERIES-@:${GNUCASH_LATEST_STABLE_SERIES}:g' > $@
rm -f $@.tmp
if PLATFORM_WIN32
perl -pi.bak -e 's/" *$$//' $@
else
perl -pi.bak -e 's/" *$$/\n/' $@
endif
DISTCLEANFILES = \
gnucash.1 \
tip_of_the_day.list \
tip_of_the_day.list.bak