Home | History | Annotate | Line # | Download | only in suse
Makefile.am revision 1.1.1.1
      1 EXTRA_DIST = ipsec-tools.spec.in racoon.init sysconfig.racoon
      2 
      3 all-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*
      9 ipsec-tools.spec: ipsec-tools.spec.in Makefile
     10 	rm -f $@.tmp
     11 	sed < $< > $@.tmp \
     12 	    -e 's:@-VERSION-@:${VERSION}:'
     13 	mv $@.tmp $@
     14 
     15 CLEANFILES = ipsec-tools.spec
     16