mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Added tmpfileplus to build system.
This commit is contained in:
parent
1c33af68ce
commit
605bcec87b
3
Makefile
3
Makefile
@ -16,6 +16,7 @@ endif
|
||||
# Build the libs.
|
||||
all :
|
||||
$(Q)$(MAKE) -C third_party/minizip
|
||||
$(Q)$(MAKE) -C third_party/tmpfileplus
|
||||
$(Q)$(MAKE) -C src
|
||||
|
||||
# Build the example programs.
|
||||
@ -29,6 +30,7 @@ clean :
|
||||
$(Q)$(MAKE) clean -C test/functional/src
|
||||
$(Q)$(MAKE) clean -C examples
|
||||
$(Q)$(MAKE) clean -C third_party/minizip
|
||||
$(Q)$(MAKE) clean -C third_party/tmpfileplus
|
||||
$(Q)rm -rf docs/html
|
||||
$(Q)rm -rf test/functional/__pycache__
|
||||
$(Q)rm -f test/functional/*.pyc
|
||||
@ -46,6 +48,7 @@ test_functional : all
|
||||
test_unit :
|
||||
@echo "Compiling unit tests ..."
|
||||
$(Q)$(MAKE) -C third_party/minizip
|
||||
$(Q)$(MAKE) -C third_party/tmpfileplus
|
||||
$(Q)$(MAKE) -C src test_lib
|
||||
$(Q)$(MAKE) -C test/unit test
|
||||
|
||||
|
42
third_party/tmpfileplus/Makefile
vendored
Normal file
42
third_party/tmpfileplus/Makefile
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user