mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-16 18:25:11 -06:00
18 lines
509 B
Makefile
18 lines
509 B
Makefile
EXTRA_DIST = \
|
|
gnucash.spec.in \
|
|
gnucash.spec
|
|
|
|
all-local: gnucash.spec
|
|
|
|
## 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. *sigh*
|
|
gnucash.spec: gnucash.spec.in Makefile ${top_builddir}/config.status
|
|
rm -f $@.tmp
|
|
sed < $< > $@.tmp \
|
|
-e 's:@-VERSION-@:${VERSION}:'
|
|
mv $@.tmp $@
|
|
|
|
DISTCLEANFILES = gnucash.spec
|