Sha256: 1e7f38a717172137c45ead6f5973cb319eb983163d700399f7cb3fc3ce7a93fb
Contents?: true
Size: 742 Bytes
Versions: 1
Compression:
Stored size: 742 Bytes
Contents
############################################################################### # # Simplied Makefile to build the openwall md5 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: md5.o md5.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/md5/Makefile |