mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-12-02 05:29:20 -06:00
dd13bbf553
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2410 57a11ea4-9604-0410-9ed3-97b8803252fd
19 lines
478 B
Makefile
19 lines
478 B
Makefile
|
|
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
|