2014-06-08 17:40:59 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Makefile for libxlsxwriter library.
|
|
|
|
#
|
2016-01-03 19:47:16 +00:00
|
|
|
# Copyright 2014-2016, John McNamara, jmcnamara@cpan.org
|
2014-06-08 17:40:59 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# Keep the output quiet by default.
|
|
|
|
Q=@
|
|
|
|
ifdef V
|
|
|
|
Q=
|
|
|
|
endif
|
|
|
|
|
|
|
|
.PHONY: docs tags examples
|
|
|
|
|
|
|
|
# Build the libs.
|
|
|
|
all :
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C third_party/minizip
|
2016-07-14 00:02:50 +01:00
|
|
|
ifndef USE_STANDARD_TMPFILE
|
2016-07-10 15:40:41 +01:00
|
|
|
$(Q)$(MAKE) -C third_party/tmpfileplus
|
2016-07-14 00:02:50 +01:00
|
|
|
endif
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C src
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
# Build the example programs.
|
2014-06-15 21:24:21 +01:00
|
|
|
examples :
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C examples
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
# Clean src and test directories.
|
|
|
|
clean :
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) clean -C src
|
|
|
|
$(Q)$(MAKE) clean -C test/unit
|
|
|
|
$(Q)$(MAKE) clean -C test/functional/src
|
|
|
|
$(Q)$(MAKE) clean -C examples
|
|
|
|
$(Q)$(MAKE) clean -C third_party/minizip
|
2014-06-08 17:40:59 +01:00
|
|
|
$(Q)rm -rf docs/html
|
2014-06-09 23:51:10 +01:00
|
|
|
$(Q)rm -rf test/functional/__pycache__
|
|
|
|
$(Q)rm -f test/functional/*.pyc
|
|
|
|
$(Q)rm -f lib/*
|
2016-07-14 00:02:50 +01:00
|
|
|
ifndef USE_STANDARD_TMPFILE
|
|
|
|
$(Q)$(MAKE) clean -C third_party/tmpfileplus
|
|
|
|
endif
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
# Run the unit tests.
|
|
|
|
test : all test_functional test_unit
|
|
|
|
|
|
|
|
# Run the functional tests.
|
|
|
|
test_functional : all
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C test/functional/src
|
2014-06-08 17:40:59 +01:00
|
|
|
$(Q)py.test test/functional -v
|
|
|
|
|
|
|
|
# Run all tests.
|
2014-06-09 23:51:10 +01:00
|
|
|
test_unit :
|
2014-06-08 17:40:59 +01:00
|
|
|
@echo "Compiling unit tests ..."
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C third_party/minizip
|
2016-07-14 00:02:50 +01:00
|
|
|
ifndef USE_STANDARD_TMPFILE
|
2016-07-10 15:40:41 +01:00
|
|
|
$(Q)$(MAKE) -C third_party/tmpfileplus
|
2016-07-14 00:02:50 +01:00
|
|
|
endif
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C src test_lib
|
|
|
|
$(Q)$(MAKE) -C test/unit test
|
2014-06-08 17:40:59 +01:00
|
|
|
|
2016-06-26 03:28:09 +01:00
|
|
|
# Test the functional test exes with valgrind (in 64bit mode only).
|
2014-06-08 17:40:59 +01:00
|
|
|
test_valgrind : all
|
2016-06-26 03:28:09 +01:00
|
|
|
ifeq ($(findstring m32,$(CFLAGS)),)
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C test/functional/src test_valgrind
|
|
|
|
$(Q)$(MAKE) -C examples test_valgrind
|
2016-06-26 03:28:09 +01:00
|
|
|
endif
|
2014-06-08 17:40:59 +01:00
|
|
|
|
2014-06-15 21:24:21 +01:00
|
|
|
# Minimal target for quick compile without creating the libs.
|
|
|
|
test_compile :
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C src test_compile
|
2014-06-15 21:24:21 +01:00
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
# Indent the source files with the .indent.pro settings.
|
|
|
|
indent:
|
2014-06-15 21:24:21 +01:00
|
|
|
$(Q)gindent src/*.c include/*.h include/xlsxwriter/*.h
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
tags:
|
|
|
|
$(Q)rm -f TAGS
|
|
|
|
$(Q)etags src/*.c include/*.h include/xlsxwriter/*.h
|
|
|
|
|
|
|
|
# Build the doxygen docs.
|
2015-12-07 20:29:01 +00:00
|
|
|
doc: docs
|
2014-06-08 17:40:59 +01:00
|
|
|
docs:
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C docs
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
# Simple minded install.
|
|
|
|
install:
|
|
|
|
$(Q)cp -r include/* /usr/include
|
|
|
|
$(Q)cp lib/* /usr/lib
|
2014-06-27 01:37:01 +01:00
|
|
|
|
2016-06-24 01:22:29 +01:00
|
|
|
# Simpler minded uninstall.
|
|
|
|
uninstall:
|
|
|
|
$(Q)rm -rf /usr/include/xlsxwriter*
|
|
|
|
$(Q)rm /usr/lib/libxlsxwriter.*
|
|
|
|
|
|
|
|
# Strip the lib files.
|
|
|
|
strip:
|
|
|
|
$(Q)strip lib/*
|
|
|
|
|
2014-06-27 01:37:01 +01:00
|
|
|
# Run a coverity static analysis.
|
|
|
|
coverity:
|
|
|
|
$(Q)$(MAKE) -C third_party/minizip
|
|
|
|
$(Q)$(MAKE) -C src clean
|
|
|
|
$(Q)rm -f lib/*
|
|
|
|
$(Q)rm -rf cov-int
|
|
|
|
$(Q)rm -f libxlsxwriter-coverity.tgz
|
2015-12-16 21:30:07 +00:00
|
|
|
$(Q)../cov-analysis-macosx-7.7.0.4/bin/cov-build --dir cov-int make -C src libxlsxwriter.a
|
2014-06-27 01:37:01 +01:00
|
|
|
$(Q)tar -czf libxlsxwriter-coverity.tgz cov-int
|
2014-06-27 02:13:44 +01:00
|
|
|
$(Q)$(MAKE) -C src clean
|
|
|
|
$(Q)rm -f lib/*
|
2015-12-07 20:29:01 +00:00
|
|
|
|
|
|
|
spellcheck:
|
|
|
|
$(Q)for f in docs/src/*.dox; do aspell --lang=en_US --check $$f; done
|
|
|
|
$(Q)for f in include/xlsxwriter/*.h; do aspell --lang=en_US --check $$f; done
|
2015-12-14 00:02:51 +00:00
|
|
|
$(Q)for f in src/*.c; do aspell --lang=en_US --check $$f; done
|
2016-05-23 23:09:03 +01:00
|
|
|
$(Q)for f in examples/*.c; do aspell --lang=en_US --check $$f; done
|
2015-12-13 16:24:12 +00:00
|
|
|
$(Q)aspell --lang=en_US --check Changes.txt
|
|
|
|
$(Q)aspell --lang=en_US --check Readme.md
|
2015-12-07 20:29:01 +00:00
|
|
|
|
|
|
|
releasecheck:
|
|
|
|
$(Q)dev/release/release_check.sh
|
|
|
|
|
|
|
|
release: releasecheck
|
2015-12-07 22:53:05 +00:00
|
|
|
@echo
|
2015-12-07 20:29:01 +00:00
|
|
|
@echo "Pushing to git master ..."
|
|
|
|
$(Q)git push origin master
|
|
|
|
$(Q)git push --tags
|
|
|
|
|
2015-12-07 22:53:05 +00:00
|
|
|
@echo
|
2015-12-07 20:29:01 +00:00
|
|
|
@echo "Pushing updated docs ..."
|
|
|
|
$(Q)make -C ../libxlsxwriter.github.io release
|
|
|
|
|
2015-12-07 22:53:05 +00:00
|
|
|
@echo
|
2015-12-07 20:29:01 +00:00
|
|
|
@echo "Pushing the cocoapod ..."
|
2016-06-11 14:56:41 +01:00
|
|
|
$(Q)pod trunk push libxlsxwriter.podspec --use-libraries
|
2015-12-07 22:53:05 +00:00
|
|
|
|
|
|
|
@echo
|
|
|
|
@echo "Finished. Opening files."
|
|
|
|
$(Q)open http://libxlsxwriter.github.io/changes.html
|
|
|
|
$(Q)open http://cocoadocs.org/docsets/libxlsxwriter
|
|
|
|
$(Q)open https://github.com/jmcnamara/libxlsxwriter
|
|
|
|
$(Q)open https://github.com/jmcnamara/libxlsxwriter/releases
|