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.
19 lines
478 B
19 lines
478 B
|
|
EXTRA_DIST = \
|
|
.cvsignore \
|
|
gnucash.spec.in
|
|
|
|
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
|
|
rm -f $@.tmp
|
|
sed < $@.in > $@.tmp \
|
|
-e 's:@-VERSION-@:${VERSION}:'
|
|
mv $@.tmp $@
|
|
|
|
CLEANFILES += gnucash.spec
|