mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-28 11:44:12 -06:00
7c83ed14a0
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16019 57a11ea4-9604-0410-9ed3-97b8803252fd
21 lines
551 B
Makefile
21 lines
551 B
Makefile
SUBDIRS = win32
|
|
|
|
EXTRA_DIST = \
|
|
gnucash-2.1.x.ebuild \
|
|
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
|