Make sure that after the change from revision 1.256.2.6 (1.261 in HEAD),
authorBodo Möller <bodo@openssl.org>
Tue, 3 Jan 2006 03:04:46 +0000 (03:04 +0000)
committerBodo Möller <bodo@openssl.org>
Tue, 3 Jan 2006 03:04:46 +0000 (03:04 +0000)
it's still possible to do a partial build.

Makefile.org

index e65779cdd20f28d4fe0ec916f4ef3a270fa5d8ad..aa240a6281fa1b1f7b639321d8f3275f2cb051ff 100644 (file)
@@ -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 \