Separate out the third_party build target.

This commit is contained in:
John McNamara 2021-06-02 21:10:25 +01:00
parent cd660913e4
commit 972db12d50

View File

@ -20,10 +20,14 @@ PYTESTFILES ?= test
VERSION = $(shell sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < include/xlsxwriter.h) VERSION = $(shell sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < include/xlsxwriter.h)
.PHONY: docs tags examples .PHONY: docs tags examples third_party
# Build the libs. # Build libxlsxwriter.
all : all : third_party
$(Q)$(MAKE) -C src
# Build the third party libs.
third_party :
ifndef USE_SYSTEM_MINIZIP ifndef USE_SYSTEM_MINIZIP
$(Q)$(MAKE) -C third_party/minizip $(Q)$(MAKE) -C third_party/minizip
endif endif
@ -37,8 +41,7 @@ ifndef USE_OPENSSL_MD5
endif endif
endif endif
$(Q)$(MAKE) -C src # Build a macOS universal binary.
universal_binary : universal_binary :
$(Q)$(MAKE) clean $(Q)$(MAKE) clean
$(Q)TARGET_ARCH="-target x86_64-apple-macos10.12" $(MAKE) all $(Q)TARGET_ARCH="-target x86_64-apple-macos10.12" $(MAKE) all