gnucash/libgnucash/quotes/Makefile.am
Geert Janssens 83d14e1c1c Restructure the src directory
It is split into
- /libgnucash (for the non-gui bits)
- /gnucash (for the gui)
- /common (misc source files used by both)
- /bindings (currently only holds python bindings)

This is the first step in restructuring the code. It will need much
more fine tuning later on.
2017-08-10 18:45:00 +02:00

53 lines
1.3 KiB
Makefile

bin_SCRIPTS = gnc-fq-check gnc-fq-dump gnc-fq-helper gnc-fq-update
man_MANS = \
gnc-fq-dump.1 \
gnc-fq-helper.1
EXTRA_DIST = \
Quote_example.pl \
gnc-fq-check.in \
gnc-fq-dump \
gnc-fq-helper.in \
gnc-fq-update.in \
gnc-value-portfolio \
CMakeLists.txt
## 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-fq-helper: gnc-fq-helper.in Makefile
rm -f $@.tmp
sed < $< > $@.tmp \
-e 's:@-PERL-@:${PERL}:g' \
-e 's:@-PERLINCL-@:${PERLINCL}:g'
chmod +x $@.tmp
mv $@.tmp $@
gnc-fq-check: gnc-fq-check.in Makefile
rm -f $@.tmp
sed < $< > $@.tmp \
-e 's:@-PERL-@:${PERL}:g' \
-e 's:@-PERLINCL-@:${PERLINCL}:g'
chmod +x $@.tmp
mv $@.tmp $@
gnc-fq-update: gnc-fq-update.in Makefile
rm -f $@.tmp
sed < $< > $@.tmp \
-e 's:@-PERL-@:${PERL}:g' \
-e 's:@-PERLINCL-@:${PERLINCL}:g'
chmod +x $@.tmp
mv $@.tmp $@
gnc-fq-dump.1: gnc-fq-dump Makefile
pod2man $< > $@
gnc-fq-helper.1: gnc-fq-helper Makefile
pod2man $< > $@
CLEANFILES = gnc-fq-helper gnc-fq-check gnc-fq-update
DISTCLEANFILES = gnc-fq-dump.1 gnc-fq-helper.1