mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-28 19:53:58 -06:00
4d871fc9fd
The last contributors here, Josh Sled and Chris Lyttle, have put their code under "GPLv2 and GPLv3" license, see r22063, but I'm too lazy to look up the copyright holders on the file as a whole so I'd rather remove it. If someone wants to add a similar packaging file again, feel free to do so, but please don't use GPLv2-only code to do so. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22067 57a11ea4-9604-0410-9ed3-97b8803252fd
20 lines
526 B
Makefile
20 lines
526 B
Makefile
SUBDIRS = win32
|
|
|
|
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
|