aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2008-04-20 04:44:49 +0000
committerRob Austein <sra@hactrn.net>2008-04-20 04:44:49 +0000
commit30e5c6cca080bc7c64dac004f523d70f3ed56391 (patch)
tree8184fd3522f54996e70e5f806f515aea46e6dbaf
parent68cebf413041bc1920a47c13f5146489d84b1c7d (diff)
make test
svn path=/Makefile; revision=1682
-rw-r--r--Makefile4
-rw-r--r--openssl/Makefile3
-rw-r--r--tests/Makefile2
-rw-r--r--tests/uri/Makefile3
4 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 35a6f6ff..ac04f819 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,11 @@
SUBDIRS = openssl rcynic tests pow rpkid
-all install clean:
+all install clean test:
@for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && make $@); done
+test: all
+
export:
svn export http://subvert-rpki.hactrn.net/
-cd subvert-rpki.hactrn.net/scripts/rpki; PATH=/bin:/usr/bin:/usr/local/bin /usr/local/bin/doxygen </dev/null
diff --git a/openssl/Makefile b/openssl/Makefile
index dbe49636..ab97bc37 100644
--- a/openssl/Makefile
+++ b/openssl/Makefile
@@ -22,3 +22,6 @@ install:
sandblast:
svn st -v openssl* | awk '/^I/ && NF == 2 {system("set -x; rm -rf " $$2)}'
+
+test:
+ @true
diff --git a/tests/Makefile b/tests/Makefile
index 6750dd20..51aa972d 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -2,7 +2,7 @@
SUBDIRS = resource-set uri
-all clean:
+all clean test:
@for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && make $@); done
install:
diff --git a/tests/uri/Makefile b/tests/uri/Makefile
index 4f1f6122..229dc702 100644
--- a/tests/uri/Makefile
+++ b/tests/uri/Makefile
@@ -17,3 +17,6 @@ clean:
${BIN}: ${OBJ} ${LIB} Makefile
${CC} -g -o $@ ${OBJ} ${LIB}
+
+test:
+ @true