diff options
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 |