mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Separate out the third_party build target.
This commit is contained in:
parent
cd660913e4
commit
972db12d50
13
Makefile
13
Makefile
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user