Added tmpfileplus to build system.

This commit is contained in:
John McNamara 2016-07-10 15:40:41 +01:00
parent 1c33af68ce
commit 605bcec87b
2 changed files with 45 additions and 0 deletions

View File

@ -16,6 +16,7 @@ endif
# Build the libs. # Build the libs.
all : all :
$(Q)$(MAKE) -C third_party/minizip $(Q)$(MAKE) -C third_party/minizip
$(Q)$(MAKE) -C third_party/tmpfileplus
$(Q)$(MAKE) -C src $(Q)$(MAKE) -C src
# Build the example programs. # Build the example programs.
@ -29,6 +30,7 @@ clean :
$(Q)$(MAKE) clean -C test/functional/src $(Q)$(MAKE) clean -C test/functional/src
$(Q)$(MAKE) clean -C examples $(Q)$(MAKE) clean -C examples
$(Q)$(MAKE) clean -C third_party/minizip $(Q)$(MAKE) clean -C third_party/minizip
$(Q)$(MAKE) clean -C third_party/tmpfileplus
$(Q)rm -rf docs/html $(Q)rm -rf docs/html
$(Q)rm -rf test/functional/__pycache__ $(Q)rm -rf test/functional/__pycache__
$(Q)rm -f test/functional/*.pyc $(Q)rm -f test/functional/*.pyc
@ -46,6 +48,7 @@ test_functional : all
test_unit : test_unit :
@echo "Compiling unit tests ..." @echo "Compiling unit tests ..."
$(Q)$(MAKE) -C third_party/minizip $(Q)$(MAKE) -C third_party/minizip
$(Q)$(MAKE) -C third_party/tmpfileplus
$(Q)$(MAKE) -C src test_lib $(Q)$(MAKE) -C src test_lib
$(Q)$(MAKE) -C test/unit test $(Q)$(MAKE) -C test/unit test

42
third_party/tmpfileplus/Makefile vendored Normal file
View File

@ -0,0 +1,42 @@
###############################################################################
#
# Simplied Makefile to build tmpfileplus for the libxlsxwriter library.
#
# Keep the output quiet by default.
Q=@
ifdef V
Q=
endif
UNAME := $(shell uname)
# Check for MinGW/MinGW64/Cygwin environments.
ifneq (,$(findstring MINGW, $(UNAME)))
MING_LIKE = y
endif
ifneq (,$(findstring MSYS, $(UNAME)))
MING_LIKE = y
endif
ifneq (,$(findstring CYGWIN, $(UNAME)))
MING_LIKE = y
endif
FPIC = -fPIC
# Change make options on MinGW/MinGW64/Cygwin.
ifdef MING_LIKE
FPIC =
CC = gcc
endif
all: tmpfileplus.o tmpfileplus.so
%.o : %.c
$(Q)$(CC) -c $(CFLAGS) $<
%.so : %.c
$(Q)$(CC) $(FPIC) -c $(CFLAGS) $< -o $@
clean:
$(Q)/bin/rm -f *.o *.so