Makefile.am revision 1.1.1.1
1EXTRA_DIST = ipsec-tools.spec.in racoon.init sysconfig.racoon
2
3all-local: ipsec-tools.spec
4
5## We borrow guile's convention and use @-...-@ as the substitution
6## brackets here, instead of the usual @...@.  This prevents autoconf
7## from substituting the values directly into the left-hand sides of
8## the sed substitutions.  *sigh*
9ipsec-tools.spec: ipsec-tools.spec.in Makefile
10	rm -f $@.tmp
11	sed < $< > $@.tmp \
12	    -e 's:@-VERSION-@:${VERSION}:'
13	mv $@.tmp $@
14
15CLEANFILES = ipsec-tools.spec
16