diff options
author | Martin Willi <martin@strongswan.org> | 2006-05-24 06:36:46 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-05-24 06:36:46 +0000 |
commit | 298b06c28cf571f7da747c82b5cc0490c879dac1 (patch) | |
tree | 7fe48e7dad10f731d7681b2f408f295e2e0126c5 /src/libstrongswan/Makefile.am | |
parent | 8b5be79d8330dcd9497af227b1360d6674914412 (diff) | |
download | strongswan-298b06c28cf571f7da747c82b5cc0490c879dac1.tar.bz2 strongswan-298b06c28cf571f7da747c82b5cc0490c879dac1.tar.xz |
- build gets perl and gperf from configure now
- moved built sources to maintainer-clean
Diffstat (limited to 'src/libstrongswan/Makefile.am')
-rw-r--r-- | src/libstrongswan/Makefile.am | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am index 8e380156f..68e5497d2 100644 --- a/src/libstrongswan/Makefile.am +++ b/src/libstrongswan/Makefile.am @@ -19,20 +19,15 @@ libstrongswan_la_LIBADD = -lgmp -lpthread INCLUDES = -I$(top_srcdir)/src/libstrongswan EXTRA_DIST = asn1/oid.txt asn1/oid.pl -DISTCLEANFILES = asn1/oid.c asn1/oid.h +MAINTAINERCLEANFILES = asn1/oid.c asn1/oid.h if USE_LEAK_DETECTIVE libstrongswan_la_LIBADD += -ldl AM_CFLAGS = -DLEAK_DETECTIVE endif - -# TODO: get perl from ./configure -PERL=perl - asn1/oid.c : asn1/oid.txt asn1/oid.pl - cd asn1 && $(PERL) oid.pl + cd asn1 && $(PERL) oid.pl asn1/oid.h : asn1/oid.txt asn1/oid.pl cd asn1 && $(PERL) oid.pl - |