diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 00000000..20b0ef5a --- /dev/null +++ b/Makefile.in @@ -0,0 +1,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 |