aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2007-11-19 13:40:27 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2007-11-19 13:40:27 +0000
commit8ebe9be37825435079d799f1b0e5f769b4c38290 (patch)
tree451def6940504cfeed3fbe0d139f86fdb6ae5813
parentcf5aa9d6167987ea4822a6c7e977ed7b57abaf74 (diff)
Added p7 to build environment.
svn path=/trunk/; revision=23493
-rw-r--r--asn1/Makefile.am1
-rw-r--r--asn1/Makefile.nmake9
-rw-r--r--configure.in1
3 files changed, 11 insertions, 0 deletions
diff --git a/asn1/Makefile.am b/asn1/Makefile.am
index ae83033bf8..b3fa5f111d 100644
--- a/asn1/Makefile.am
+++ b/asn1/Makefile.am
@@ -59,6 +59,7 @@ SUBDIRS = \
nbap \
ns-cert-exts \
ocsp \
+ p7 \
pkcs1 \
pkcs12 \
pkinit \
diff --git a/asn1/Makefile.nmake b/asn1/Makefile.nmake
index 3ca53cea21..5d3d22c274 100644
--- a/asn1/Makefile.nmake
+++ b/asn1/Makefile.nmake
@@ -49,6 +49,7 @@ ber: \
mms \
ns-cert-exts \
ocsp \
+ p7 \
pkcs1 \
pkcs12 \
pkinit \
@@ -207,6 +208,9 @@ clean:
cd ocsp
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
+ cd p7
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
+ cd ..
cd pkcs1
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake clean
cd ..
@@ -499,6 +503,11 @@ ocsp::
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
cd ..
+p7::
+ cd p7
+ $(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
+ cd ..
+
pkcs1::
cd pkcs1
$(MAKE) /$(MAKEFLAGS) -f Makefile.nmake copy_files
diff --git a/configure.in b/configure.in
index 765f44e5e7..dc8dbfdcc4 100644
--- a/configure.in
+++ b/configure.in
@@ -1507,6 +1507,7 @@ AC_OUTPUT(
asn1/nbap/Makefile
asn1/ns-cert-exts/Makefile
asn1/ocsp/Makefile
+ asn1/p7/Makefile
asn1/pkcs1/Makefile
asn1/pkcs12/Makefile
asn1/pkinit/Makefile