diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | openssl/Makefile | 3 | ||||
-rw-r--r-- | tests/Makefile | 2 | ||||
-rw-r--r-- | tests/uri/Makefile | 3 |
4 files changed, 10 insertions, 2 deletions
@@ -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 |