blob: 20b0ef5ab1878a66197b2b742932026c98ba1ef2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $Id$
# This top-level Makefile doesn't really need to be run through
# autoconf at all yet, but the need to run ./configure is more obvious
# if there's no Makefile at the top....
SUBDIRS = openssl rcynic utils 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/
tar czf subvert-rpki.hactrn.net-$$(date +%Y.%m.%d).tar.gz subvert-rpki.hactrn.net
rm -rf subvert-rpki.hactrn.net
|