mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* doc/README.OFX: I've quickly put together some docs for the ofx module and transaction matching. Also includes a FAQ. Not perfect, but should closebug 99478. * doc/Makefile.am: Add README.OFX * src/import-export/ofx/README: Remove obsolete file. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7926 57a11ea4-9604-0410-9ed3-97b8803252fd
55 lines
1.1 KiB
Makefile
55 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.OFX \
|
|
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
|