Skip to content

Commit

Permalink
tarball: use .NOTPARALLEL to allow 'make wipeclean all -j9' and 'make…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
redj committed Aug 16, 2020
1 parent 71d9ba8 commit f7008d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1114,3 +1114,5 @@ troubleshoot:
@$(call echo,OPENSSL_BIN_DIR=$(OPENSSL_BIN_DIR))
@$(call echo,ROOT_ABSPATH=$(ROOT_ABSPATH))
@$(call echo,DYLD_LIBRARY_PATH=$(DYLD_LIBRARY_PATH))

.NOTPARALLEL: $(NOT_PARALLEL_TARGETS)
2 changes: 2 additions & 0 deletions crossplatform.mk
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ ifndef VERBOSE
MAKEFLAGS += --no-print-directory
endif

NOT_PARALLEL_TARGETS += clean realclean wipeclean distclean install

# HOST PLATFORM DETECTION
ifeq ($(OS),Windows_NT)
HOST_PLATFORM := win32
Expand Down

0 comments on commit f7008d1

Please sign in to comment.