mirror of
https://github.com/Gnucash/gnucash.git
synced 2026-07-30 08:08:15 -05:00
* doc/Makefile.am * src/doc/Makefile.am * src/doc/design/Makefile.am * src/experimental/cgi-bin/Makefile.am Added docs that were missing from dist. Moved doxygen clean rules to maintainer-clean. Moved texinfos to maintainer-clean. * lib/libc/Makefile.am Added sources needed for OS X to dist. * src/app-utils/Makefile.am * src/backend/postgres/Makefile.am * src/business/business-core/Makefile.am * src/business/business-gnome/Makefile.am * src/business/dialog-tax-table/Makefile.am * src/core-utils/Makefile.am * src/engine/Makefile.am * src/gnc-module/Makefile.am * src/gnc-module/test/mod-bar/Makefile.am * src/gnc-module/test/mod-baz/Makefile.am * src/gnc-module/test/mod-foo/Makefile.am * src/gnome/Makefile.am * src/gnome-search/Makefile.am * src/import-export/Makefile.am * src/import-export/binary-import/Makefile.am * src/import-export/qif-io-core/Makefile.am * src/register/register-core/Makefile.am * src/report/report-gnome/Makefile.am * src/scm/Makefile.am * src/app-file/Makefile.am * src/gnome-utils/Makefile.am Put generated headers into dist. Moved symlinks to distclean. Moved generated files to maintainer-clean. Put generated gw-.*.scm files in dist for parity. Put generated sources into dist. Moved generated source to maintainer-clean. * src/bin/overrides/Makefile Made built scripts depend on config.status to ensure they're rebuilt when paths change. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7859 57a11ea4-9604-0410-9ed3-97b8803252fd
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
|
|
docdir = ${GNC_DOC_INSTALL_DIR}
|
|
|
|
SUBDIRS = examples
|
|
|
|
doc_DATA = \
|
|
README.francais \
|
|
README.german \
|
|
guile-hackers.txt \
|
|
projects.html
|
|
|
|
man_MANS = \
|
|
gnc-prices.1 \
|
|
gnucash.1
|
|
|
|
EXTRA_DIST = \
|
|
.cvsignore \
|
|
${doc_DATA} \
|
|
RAW-NOTES \
|
|
README.build-system \
|
|
README.francais \
|
|
README.german \
|
|
README.HBCI \
|
|
README.translator.txt \
|
|
build-aix.txt \
|
|
build-solaris.txt \
|
|
build-suse.txt \
|
|
generic_objects.txt \
|
|
gnome-hackers.txt \
|
|
gnc-prices.1.in \
|
|
gnucash.1.in
|
|
|
|
## 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
|
|
rm -f $@.tmp
|
|
sed < $< > $@.tmp \
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
chmod +x $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
gnucash.1: gnucash.1.in
|
|
rm -f $@.tmp
|
|
sed < $< > $@.tmp \
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
-e 's:@-DATE-@:$(shell date +'%B %Y'):g'
|
|
chmod +x $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
DISTCLEANFILES = gnc-prices.1 gnucash.1
|