blob: ac04f8195995b15aa17335d957fbaa5d0a54f40a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $Id$
SUBDIRS = openssl rcynic tests pow rpkid
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
tar czf subvert-rpki.hactrn.net-$$(date +%Y.%m.%d).tar.gz subvert-rpki.hactrn.net
rm -rf subvert-rpki.hactrn.net
|