aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--openssl/Makefile15
-rw-r--r--tests/Makefile9
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