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 | |
parent | 159cc747f418eddfc9ffba729c1dceb2ab80ac6f (diff) |
More Makefiles
svn path=/Makefile; revision=394
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | openssl/Makefile | 15 | ||||
-rw-r--r-- | tests/Makefile | 9 |
3 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..9d571805 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +# $Id$ + +SUBDIRS = openssl rcynic tests + +all install clean: + @for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && make $@); done 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 diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 00000000..6750dd20 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,9 @@ +# $Id$ + +SUBDIRS = resource-set uri + +all clean: + @for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && make $@); done + +install: + @true |