Ticket #15452: patch-Makefile.org-parallel.diff
File patch-Makefile.org-parallel.diff, 1.3 KB (added by jeremyhu (Jeremy Huddleston Sequoia), 10 years ago) |
---|
-
Makefile.org
old new build_libs: build_crypto build_ssl build 274 274 275 275 build_crypto: 276 276 @dir=crypto; target=all; $(BUILD_ONE_CMD) 277 build_ssl: 277 build_ssl: build_crypto 278 278 @dir=ssl; target=all; $(BUILD_ONE_CMD) 279 build_engines: 279 build_engines: build_crypto 280 280 @dir=engines; target=all; $(BUILD_ONE_CMD) 281 build_apps: 281 build_apps: build_libs 282 282 @dir=apps; target=all; $(BUILD_ONE_CMD) 283 build_tests: 283 build_tests: build_libs 284 284 @dir=test; target=all; $(BUILD_ONE_CMD) 285 build_tools: 285 build_tools: build_libs 286 286 @dir=tools; target=all; $(BUILD_ONE_CMD) 287 287 288 288 all_testapps: build_libs build_testapps … … dist: 538 538 dist_pem_h: 539 539 (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean) 540 540 541 install: allinstall_docs install_sw541 install: install_docs install_sw 542 542 543 install_sw: 543 install_sw: build_all openssl.pc libssl.pc libcrypto.pc 544 544 @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ 545 545 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR) \ 546 546 $(INSTALL_PREFIX)$(INSTALLTOP)/$(LIBDIR)/engines \ … … install_html_docs: 634 634 done; \ 635 635 done 636 636 637 install_docs: 637 install_docs: build_all 638 638 @$(PERL) $(TOP)/util/mkdir-p.pl \ 639 639 $(INSTALL_PREFIX)$(MANDIR)/man1 \ 640 640 $(INSTALL_PREFIX)$(MANDIR)/man3 \