summaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2006-01-03 03:04:46 +0000
committerBodo Möller <bodo@openssl.org>2006-01-03 03:04:46 +0000
commit2f58af0d85cf3755603e5b7c5a76184602111c1d (patch)
treef16ad9cbb54e8e337201ccdd96d8d99c89583712 /Makefile.org
parent0ae50f19da987420331cc000b85e4a11d5919bb3 (diff)
Make sure that after the change from revision 1.256.2.6 (1.261 in HEAD),
it's still possible to do a partial build.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.org b/Makefile.org
index e65779cdd2..aa240a6281 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -211,21 +211,21 @@ build_all: build_libs build_apps build_tests build_tools
build_libs: build_crypto build_ssl build_engines
build_crypto:
- @dir=crypto; target=all; $(BUILD_CMD)
+ @dir=crypto; target=all; $(RECURSIVE_BUILD_CMD)
build_ssl:
- @dir=ssl; target=all; $(BUILD_CMD)
+ @dir=ssl; target=all; $(RECURSIVE_BUILD_CMD)
build_engines:
- @dir=engines; target=all; $(BUILD_CMD)
+ @dir=engines; target=all; $(RECURSIVE_BUILD_CMD)
build_apps:
- @dir=apps; target=all; $(BUILD_CMD)
+ @dir=apps; target=all; $(RECURSIVE_BUILD_CMD)
build_tests:
- @dir=test; target=all; $(BUILD_CMD)
+ @dir=test; target=all; $(RECURSIVE_BUILD_CMD)
build_tools:
- @dir=tools; target=all; $(BUILD_CMD)
+ @dir=tools; target=all; $(RECURSIVE_BUILD_CMD)
all_testapps: build_libs build_testapps
build_testapps:
- @dir=crypto; target=testapps; $(BUILD_CMD)
+ @dir=crypto; target=testapps; $(RECURSIVE_BUILD_CMD)
libcrypto$(SHLIB_EXT): libcrypto.a
@if [ "$(SHLIB_TARGET)" != "" ]; then \