diff options
author | Rob Austein <sra@hactrn.net> | 2010-12-28 19:14:25 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-12-28 19:14:25 +0000 |
commit | 31e451b448ad5bad4237776172675fc6a74e0205 (patch) | |
tree | 27cb301578c614656f3e2ab10758a00d842c64a6 /Makefile.in | |
parent | e53a56120ca7aeafa2c85bfb6dc502709fbef74f (diff) |
Conditionalize which subdirectories we build, based on what configure
finds and what configure options are enabled.
Building with system OpenSSL doesn't quite work yet, still too many
hardwired paths in Makefiles.
svn path=/Makefile.in; revision=3578
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index 20b0ef5a..96571de3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,10 +1,6 @@ # $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 +SUBDIRS = @TOP_LEVEL_SUBDIRS@ all install clean test: @for i in ${SUBDIRS}; do echo "Making $@ in $$i"; (cd $$i && ${MAKE} $@); done |