Sha256: 146a7c2457a1191e381151aecee7ff90cb1cad77382f959f0fa3be2af95b3580
Contents?: true
Size: 833 Bytes
Versions: 1
Compression:
Stored size: 833 Bytes
Contents
############################################################################### # # Simplied Makefile to build the minizip objects for the libxlsxwriter library. # # Keep the output quiet by default. Q=@ ifdef V Q= endif UNAME := $(shell uname -sr) # 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 CFLAGS += -O3 -DNOCRYPT -DNOUNCRYPT # Change make options on MinGW/MinGW64/Cygwin. ifdef MING_LIKE FPIC = CC = gcc CFLAGS += -DUSE_FILE32API endif all: ioapi.o zip.o ioapi.so zip.so %.o : %.c $(Q)$(CC) -c $(CFLAGS) $(TARGET_ARCH) $< %.so : %.c $(Q)$(CC) $(FPIC) -c $(CFLAGS) $(TARGET_ARCH) $< -o $@ clean: $(Q)rm -f *.o *.so
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fast_excel-0.5.0 | libxlsxwriter/third_party/minizip/Makefile |