Home | History | Annotate | Line # | Download | only in rpm
Makefile.am revision 1.1.1.1.96.2
      1  1.1  manu SUBDIRS = suse
      2  1.1  manu 
      3  1.1  manu EXTRA_DIST = \
      4  1.1  manu   ipsec-tools.spec.in
      5  1.1  manu 
      6  1.1  manu all-local: ipsec-tools.spec
      7  1.1  manu 
      8  1.1  manu ## We borrow guile's convention and use @-...-@ as the substitution
      9  1.1  manu ## brackets here, instead of the usual @...@.  This prevents autoconf
     10  1.1  manu ## from substituting the values directly into the left-hand sides of
     11  1.1  manu ## the sed substitutions.  *sigh*
     12  1.1  manu ipsec-tools.spec: ipsec-tools.spec.in Makefile
     13  1.1  manu 	rm -f $@.tmp
     14  1.1  manu 	sed < $< > $@.tmp \
     15  1.1  manu 	    -e 's:@-VERSION-@:${VERSION}:'
     16  1.1  manu 	mv $@.tmp $@
     17  1.1  manu 
     18  1.1  manu CLEANFILES = ipsec-tools.spec
     19