Sha256: c79b3e7439012281249cfae1c1e10b9178c52eab05b95d6354b0bb1f4ebfc1db

Contents?: true

Size: 732 Bytes

Versions: 28

Compression:

Stored size: 732 Bytes

Contents

###############################################################################
#
# 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

Version data entries

28 entries across 28 versions & 3 rubygems

Version Path
xlsxwriter-0.2.2 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.4.1 libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.4.0 libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.3.0 libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.2.1.pre.2 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.2.1.pre ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.2.0 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.2.0.pre.2 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.2.0.pre ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.1.2.pre ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.1.1 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.1.0 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.2.6 libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.0.6 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.2.5 libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.0.5 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.2.3 libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.0.4 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
xlsxwriter-0.0.4.pre.2 ext/xlsxwriter/libxlsxwriter/third_party/tmpfileplus/Makefile
fast_excel-0.2.2 libxlsxwriter/third_party/tmpfileplus/Makefile