mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-23 01:16:43 -06:00
a78b5495c4
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5332 57a11ea4-9604-0410-9ed3-97b8803252fd
112 lines
2.7 KiB
Makefile
112 lines
2.7 KiB
Makefile
|
|
SUBDIRS = macros debian intl doc-tools doc lib src po rpm accounts
|
|
|
|
docdir = ${GNC_DOC_INSTALL_DIR}
|
|
|
|
noinst_DATA = make-gnucash-patch make-gnucash-potfiles @GNC_TAGS_FILE@
|
|
|
|
doc_DATA = \
|
|
AUTHORS \
|
|
COPYING \
|
|
ChangeLog \
|
|
ChangeLog.1 \
|
|
HACKING \
|
|
INSTALL \
|
|
NEWS \
|
|
README \
|
|
README.patches
|
|
|
|
# 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 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 \
|
|
ChangeLog.1 \
|
|
HACKING \
|
|
README.patches \
|
|
gnucash.lsm \
|
|
gnucash-config.in \
|
|
make-gnucash-patch.in \
|
|
make-gnucash-potfiles.in \
|
|
po/.cvsignore \
|
|
po/README \
|
|
po/glossary/de.po \
|
|
po/glossary/gnc-glossary.txt \
|
|
po/glossary/txt-to-pot.sh
|
|
|
|
|
|
bin_SCRIPTS = gnucash-config
|
|
|
|
BUILT_SOURCES = gnucash-config
|
|
CLEANFILES += gnucash-config
|
|
|
|
## 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 $@
|
|
|
|
make-gnucash-potfiles: make-gnucash-potfiles.in
|
|
rm -f $@.tmp
|
|
sed < $@.in > $@.tmp \
|
|
-e 's:@-PERL-@:${PERL}:g'
|
|
chmod +x $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
gnucash-config: gnucash-config.in
|
|
rm -f $@.tmp
|
|
sed < $@.in > $@.tmp \
|
|
-e 's:@-VERSION-@:${VERSION}:g' \
|
|
-e 's:@-GNUCASH_ENGINE_CFLAGS-@:${GNUCASH_ENGINE_CFLAGS}:g' \
|
|
-e 's:@-GNUCASH_ENGINE_LIBS-@:${GNUCASH_ENGINE_LIBS}:g'
|
|
chmod +x $@.tmp
|
|
mv $@.tmp $@
|
|
|
|
|
|
DISTCLEANFILES += \
|
|
cscope.files cscope.out etags.files make-gnucash-patch
|
|
|
|
cscope.files:
|
|
find . -name '*.[ch]' > cscope.files
|
|
|
|
cscope.out: cscope.files
|
|
cscope -b
|
|
|
|
if GNC_TAGS_FILE
|
|
|
|
etags.files: $(shell find . -type d)
|
|
find . -path './debian' -prune -o -name '*.[ch]' -print -o -name '*.scm' -print | sort > etags.files.tmp
|
|
@if cmp --quiet etags.files etags.files.tmp; \
|
|
then \
|
|
echo "TAGS file list hasn't changed."; \
|
|
rm -f etags.files.tmp; \
|
|
else \
|
|
echo "TAGS file list has changed."; \
|
|
mv etags.files.tmp etags.files; \
|
|
fi
|
|
|
|
TAGS: etags.files $(shell cat etags.files)
|
|
etags `cat etags.files`
|
|
|
|
else
|
|
|
|
TAGS:
|
|
@echo "You must ./configure with --enable-etags to use TAGS."
|
|
|
|
endif
|
|
|
|
.PHONY: TAGS
|