diff options
author | Rob Austein <sra@hactrn.net> | 2010-03-19 22:45:41 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-03-19 22:45:41 +0000 |
commit | 0171672858e16f2c660c0287695059b56633d1fe (patch) | |
tree | cfd54165361be11cbbdc89fd3c38cbe2ae5834e1 /Makefile.in | |
parent | 5627c2b760f19d757a650a021231bd2b02e7055d (diff) |
First baby steps towards autoconf. Trying to keep this simple, so
only using it where absolutely necessary at the moment.
svn path=/Makefile; revision=3125
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 |