2000-06-02 04:00:31 -05:00
|
|
|
|
2000-09-16 20:12:23 -05:00
|
|
|
SUBDIRS = macros debian doc intl lib po rpm src
|
2000-06-02 04:00:31 -05:00
|
|
|
|
|
|
|
docdir = ${GNC_DOC_INSTALL_DIR}
|
|
|
|
|
|
|
|
noinst_DATA = make-gnucash-patch
|
|
|
|
|
|
|
|
doc_DATA = \
|
|
|
|
AUTHORS \
|
|
|
|
COPYING \
|
|
|
|
ChangeLog \
|
2000-08-22 18:43:56 -05:00
|
|
|
HACKING \
|
2000-06-02 04:00:31 -05:00
|
|
|
INSTALL \
|
|
|
|
NEWS \
|
|
|
|
README
|
|
|
|
|
2000-06-05 00:51:39 -05:00
|
|
|
# All the other files that go in the distribution tarfile that aren't
|
|
|
|
# included some other way...
|
|
|
|
|
|
|
|
# Most directories handle their own EXTRA_DIST setting, but for some,
|
|
|
|
# it's not worth the trouble (i.e ./old), and for others, there's no
|
|
|
|
# Makefile.am (i.e. ./intl and ./po -- these handle their own
|
|
|
|
# Makefile.in and Makefile.in.in files...), so we list their files
|
|
|
|
# here.
|
|
|
|
|
|
|
|
# Don't list any directories or you'll get *everything*, including the
|
|
|
|
# CVS dirs.
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
.cvsignore \
|
|
|
|
gnucash.lsm \
|
|
|
|
intl/.cvsignore \
|
|
|
|
make-gnucash-patch.in \
|
2000-06-08 01:08:58 -05:00
|
|
|
old/country.sql \
|
|
|
|
old/currencynames \
|
2000-06-05 00:51:39 -05:00
|
|
|
old/Gnucash.app-defaults \
|
|
|
|
old/gnome/graph/Makefile \
|
|
|
|
old/gnome/graph/colors.c \
|
|
|
|
old/gnome/graph/design.txt \
|
|
|
|
old/gnome/graph/plot-test.c \
|
|
|
|
old/perl-reports/report-baln.phtml \
|
|
|
|
old/perl-reports/report-folio.phtml \
|
|
|
|
old/perl-reports/report-formtest.html \
|
|
|
|
old/perl-reports/report-main.html \
|
|
|
|
old/perl-reports/report-menu.html \
|
|
|
|
old/perl-reports/report-null.html \
|
|
|
|
old/perl-reports/report-pnl.phtml \
|
|
|
|
old/xacc-shell.c \
|
|
|
|
po/.cvsignore \
|
|
|
|
po/extract-macros.perl.in \
|
|
|
|
po/guile_strings.txt
|
|
|
|
|
2000-06-02 04:00:31 -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.
|
|
|
|
make-gnucash-patch: make-gnucash-patch.in
|
|
|
|
rm -f $@.tmp
|
|
|
|
sed < $@.in > $@.tmp \
|
|
|
|
-e 's:@-PERL-@:${PERL}:g'
|
|
|
|
chmod +x $@.tmp
|
|
|
|
mv $@.tmp $@
|
|
|
|
|
|
|
|
CLEANFILES += make-gnucash-patch
|
|
|
|
|
|
|
|
|