Sha256: 1ce4f9a8fa59cca9c4dd2f009d9f81fdd25a5964147af6639dc62b5d3e03066e

Contents?: true

Size: 468 Bytes

Versions: 2

Compression:

Stored size: 468 Bytes

Contents

Q=@
ifdef V
Q=
endif

# with xcode better to use cmake
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),"Darwin")
	USE_CMAKE := $(shell command -v cmake 2> /dev/null)
endif

all :
	# @echo "Compiling ext/text_width ..."
	# rake compile
	@echo "Compiling libxlsxwriter ..."
ifdef USE_CMAKE
	@echo "run cmake libxlsxwriter ..."
	cmake libxlsxwriter
else
	$(Q)$(MAKE) -C libxlsxwriter
endif

clean :
	$(Q)$(MAKE) clean -C libxlsxwriter

install :
	@echo "Nothing to install"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fast_excel-0.4.0 Makefile
fast_excel-0.3.0 Makefile