aboutsummaryrefslogtreecommitdiff
path: root/openssl/Makefile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-06-12 18:29:28 +0000
committerRob Austein <sra@hactrn.net>2008-06-12 18:29:28 +0000
commit38fe69c217faefc2b3df6deeef636d679389f7dd (patch)
tree043be36547457989ef0e50d2866cb22ddf9a7193 /openssl/Makefile
parent855c609b7b0951c22ed3a83bab77e769309e1626 (diff)
Cleanup
svn path=/Makefile; revision=1876
Diffstat (limited to 'openssl/Makefile')
-rw-r--r--openssl/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/openssl/Makefile b/openssl/Makefile
index 73d655ea..8868d50e 100644
--- a/openssl/Makefile
+++ b/openssl/Makefile
@@ -3,11 +3,12 @@
VERSION = SNAP-20080509
all: openssl-${VERSION}/Makefile
- cd openssl-${VERSION}; make $@
+ cd openssl-${VERSION}; ${MAKE} $@
ln -sf openssl-${VERSION} openssl
clean:
rm -rf openssl-${VERSION} openssl
+ cd tests; ${MAKE} $@
openssl-${VERSION}/Makefile: openssl-${VERSION}/config
cd openssl-${VERSION}; PERL=/usr/bin/perl ./config enable-rfc3779 no-dso
@@ -23,5 +24,5 @@ install:
sandblast:
svn st -v openssl* | awk '/^I/ && NF == 2 {system("set -x; rm -rf " $$2)}'
-test:
- @true
+test: all
+ cd tests; ${MAKE} $@