mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00

Added the optional Milo Yip DTOA library (emyg_dtoa) to avoid issues where the standard sprintf() dtoa function changes output based on locale settings. It is also 40-50% faster than the standard dtoa for raw numeric data. If you wish to use this third party library you can compile libxlsxwriter with it by passing `USE_DTOA_LIBRARY=1` to make. The USE_DOUBLE_FUNCTION build variable is no longer used. Imported source from https://github.com/miloyip/dtoa-benchmark Feature request #272
43 lines
726 B
Makefile
43 lines
726 B
Makefile
###############################################################################
|
|
#
|
|
# Simplied Makefile to build the emyg_dtoa library for libxlsxwriter.
|
|
#
|
|
|
|
# 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: emyg_dtoa.o emyg_dtoa.so
|
|
|
|
%.o : %.c
|
|
$(Q)$(CC) -c $(CFLAGS) $<
|
|
|
|
%.so : %.c
|
|
$(Q)$(CC) $(FPIC) -c $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
$(Q)/bin/rm -f *.o *.so
|