diff options
author | Rob Austein <sra@hactrn.net> | 2006-10-16 18:44:32 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-10-16 18:44:32 +0000 |
commit | 1fd6983a43303f549780853fdd93d60d477ecc21 (patch) | |
tree | 368e79d740382a9235f210f94670bd8f8204e9cc /openssl | |
parent | 159cc747f418eddfc9ffba729c1dceb2ab80ac6f (diff) |
More Makefiles
svn path=/Makefile; revision=394
Diffstat (limited to 'openssl')
-rw-r--r-- | openssl/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/openssl/Makefile b/openssl/Makefile new file mode 100644 index 00000000..cdb4e367 --- /dev/null +++ b/openssl/Makefile @@ -0,0 +1,15 @@ +# $Id$ + +all: .configured + cd trunk; make $@ + +clean: + cd trunk; make $@ + rm -f .configured + +.configured: trunk/Configure trunk/config + cd trunk; PERL=/usr/bin/perl ./config enable-rfc3779 no-dso + touch $@ + +install: + @echo Not attempting to install modified OpenSSL, if you want that, do it yourself |