diff options
author | Björn Gustavsson <[email protected]> | 2011-09-28 11:30:20 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-09-28 11:30:20 +0200 |
commit | ad6a940cea43cb816a7bbcacd00a91a300097b31 (patch) | |
tree | 16b070a344f665d9e6ad4cde36520f7624b853ff /lib/tools | |
parent | be8538809c571441e6543a677db58501634b7572 (diff) | |
parent | d9ec7c91ca6ae019ad80b03fb184924bad8d6bc8 (diff) | |
download | otp-ad6a940cea43cb816a7bbcacd00a91a300097b31.tar.gz otp-ad6a940cea43cb816a7bbcacd00a91a300097b31.tar.bz2 otp-ad6a940cea43cb816a7bbcacd00a91a300097b31.zip |
Merge branch 'bjorn/parallel-make/OTP-9451' into major
* bjorn/parallel-make/OTP-9451:
ic documentation: Support parallel make
system documentation: Support parallel make
Support parallel make when running erl_interface tests
odbc/c_src/Makefile.in: Support parallel make
tools/c_src/Makefile.in: Support parallel make
gs: Correct support for parallel make
Diffstat (limited to 'lib/tools')
-rw-r--r-- | lib/tools/c_src/Makefile.in | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/tools/c_src/Makefile.in b/lib/tools/c_src/Makefile.in index 65a7f5f424..6921193154 100644 --- a/lib/tools/c_src/Makefile.in +++ b/lib/tools/c_src/Makefile.in @@ -142,7 +142,9 @@ EMEM_OBJS = $(addprefix $(EMEM_OBJ_DIR)/,$(notdir $(EMEM_SRCS:.c=.o))) # Misc targets # -all: $(CREATE_DIRS) erts_lib $(PROGS) $(DRIVERS) +_create_dirs := $(shell mkdir -p $(CREATE_DIRS)) + +all: erts_lib $(PROGS) $(DRIVERS) erts_lib: cd $(ERL_TOP)/erts/lib_src && $(MAKE) $(TYPE) @@ -158,13 +160,6 @@ clean: .PHONY: all erts_lib docs clean # -# Make dir targets -# - -$(CREATE_DIRS): - $(MKDIR) -p $@ - -# # Object targets # |