mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
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
|