Skip to content

Commit f7008d1

Browse files
committed
tarball: use .NOTPARALLEL to allow 'make wipeclean all -j9' and 'make wipeclean all install -j9' to work properly instead of targets (especially wipeclean and all) interfering with eachother. note: use of .NOTPARALLEL should be expanded to other tarball makefiles and makefile generation.
1 parent 71d9ba8 commit f7008d1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1114,3 +1114,5 @@ troubleshoot:
11141114
@$(call echo,OPENSSL_BIN_DIR=$(OPENSSL_BIN_DIR))
11151115
@$(call echo,ROOT_ABSPATH=$(ROOT_ABSPATH))
11161116
@$(call echo,DYLD_LIBRARY_PATH=$(DYLD_LIBRARY_PATH))
1117+
1118+
.NOTPARALLEL: $(NOT_PARALLEL_TARGETS)

crossplatform.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ ifndef VERBOSE
99
MAKEFLAGS += --no-print-directory
1010
endif
1111

12+
NOT_PARALLEL_TARGETS += clean realclean wipeclean distclean install
13+
1214
# HOST PLATFORM DETECTION
1315
ifeq ($(OS),Windows_NT)
1416
HOST_PLATFORM := win32

0 commit comments

Comments
 (0)