2014-06-08 17:40:59 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Makefile for libxlsxwriter library.
|
|
|
|
#
|
2021-01-13 21:25:35 +00:00
|
|
|
# Copyright 2014-2021, John McNamara, jmcnamara@cpan.org
|
2014-06-08 17:40:59 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# Keep the output quiet by default.
|
|
|
|
Q=@
|
|
|
|
ifdef V
|
|
|
|
Q=
|
|
|
|
endif
|
|
|
|
|
2020-01-16 08:25:35 +01:00
|
|
|
DESTDIR ?=
|
2019-12-27 00:56:00 +01:00
|
|
|
PREFIX ?= /usr/local
|
2017-06-25 23:30:44 +01:00
|
|
|
|
2018-12-11 11:25:21 +01:00
|
|
|
PYTEST ?= py.test
|
2019-12-14 23:54:52 +00:00
|
|
|
PYTESTFILES ?= test
|
2018-12-11 11:25:21 +01:00
|
|
|
|
2021-03-19 11:15:28 -04:00
|
|
|
VERSION = $(shell sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < include/xlsxwriter.h)
|
|
|
|
|
2021-05-27 21:08:58 +01:00
|
|
|
|
2021-06-02 21:10:25 +01:00
|
|
|
.PHONY: docs tags examples third_party
|
2014-06-08 17:40:59 +01:00
|
|
|
|
2021-06-02 21:10:25 +01:00
|
|
|
# Build libxlsxwriter.
|
|
|
|
all : third_party
|
|
|
|
$(Q)$(MAKE) -C src
|
|
|
|
|
|
|
|
# Build the third party libs.
|
|
|
|
third_party :
|
2017-08-14 20:08:57 +01:00
|
|
|
ifndef USE_SYSTEM_MINIZIP
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C third_party/minizip
|
2017-08-14 20:08:57 +01:00
|
|
|
endif
|
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
|
2019-12-24 00:14:47 +00:00
|
|
|
endif
|
2021-05-27 21:08:58 +01:00
|
|
|
|
2019-12-24 00:14:47 +00:00
|
|
|
ifndef USE_NO_MD5
|
2021-05-27 21:08:58 +01:00
|
|
|
ifndef USE_OPENSSL_MD5
|
2019-12-24 00:14:47 +00:00
|
|
|
$(Q)$(MAKE) -C third_party/md5
|
2016-07-14 00:02:50 +01:00
|
|
|
endif
|
2021-05-27 21:08:58 +01:00
|
|
|
endif
|
|
|
|
|
2021-06-02 21:10:25 +01:00
|
|
|
# Build a macOS universal binary.
|
2020-11-14 21:29:06 +00:00
|
|
|
universal_binary :
|
|
|
|
$(Q)$(MAKE) clean
|
|
|
|
$(Q)TARGET_ARCH="-target x86_64-apple-macos10.12" $(MAKE) all
|
|
|
|
$(Q)mv lib/libxlsxwriter.a libxlsxwriter_x86_64.a
|
|
|
|
$(Q)mv lib/libxlsxwriter.dylib libxlsxwriter_x86_64.dylib
|
|
|
|
|
|
|
|
$(Q)$(MAKE) clean
|
|
|
|
$(Q)TARGET_ARCH="-target arm64-apple-macos11" $(MAKE) all
|
|
|
|
$(Q)mv lib/libxlsxwriter.a lib/libxlsxwriter_arm64.a
|
|
|
|
$(Q)mv lib/libxlsxwriter.dylib lib/libxlsxwriter_arm64.dylib
|
|
|
|
$(Q)mv libxlsxwriter_x86_64.a libxlsxwriter_x86_64.dylib lib
|
|
|
|
|
|
|
|
$(Q)lipo -create -output lib/libxlsxwriter.a lib/libxlsxwriter_x86_64.a lib/libxlsxwriter_arm64.a
|
|
|
|
$(Q)lipo -create -output lib/libxlsxwriter.dylib lib/libxlsxwriter_x86_64.dylib lib/libxlsxwriter_arm64.dylib
|
|
|
|
|
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
|
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/*
|
2017-08-14 20:08:57 +01:00
|
|
|
$(Q)$(MAKE) clean -C third_party/minizip
|
2016-07-14 00:02:50 +01:00
|
|
|
$(Q)$(MAKE) clean -C third_party/tmpfileplus
|
2019-12-24 00:14:47 +00:00
|
|
|
$(Q)$(MAKE) clean -C third_party/md5
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
# Run the unit tests.
|
2019-11-17 11:27:56 +00:00
|
|
|
test : all test_unit test_functional
|
2014-06-08 17:40:59 +01:00
|
|
|
|
2017-06-25 20:16:36 +01:00
|
|
|
# Test for C++ const correctness on APIs.
|
|
|
|
test_const : all
|
|
|
|
$(Q)$(MAKE) clean -C test/functional/src
|
|
|
|
$(Q)! $(MAKE) -C test/functional/src CFLAGS=-Wwrite-strings 2>&1 | grep -A 1 "note:"
|
|
|
|
|
|
|
|
|
2014-06-08 17:40:59 +01:00
|
|
|
# Run the functional tests.
|
|
|
|
test_functional : all
|
2014-06-23 20:00:20 +01:00
|
|
|
$(Q)$(MAKE) -C test/functional/src
|
2019-12-14 23:54:52 +00:00
|
|
|
$(Q)$(PYTEST) test/functional -v -k $(PYTESTFILES)
|
2014-06-08 17:40:59 +01:00
|
|
|
|
|
|
|
# Run all tests.
|
2021-05-27 21:08:58 +01:00
|
|
|
test_unit : all
|
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
|
|
|
|
2019-12-26 17:13:43 +00:00
|
|
|
# Test Cmake. This test should really be done with Cmake in the cmake dir but
|
|
|
|
# this is a workaround for now.
|
|
|
|
test_cmake :
|
2019-12-26 17:45:46 +00:00
|
|
|
ifneq ($(findstring m32,$(CFLAGS)),m32)
|
2019-12-26 17:13:43 +00:00
|
|
|
$(Q)$(MAKE) -C src clean
|
|
|
|
$(Q)cd cmake; cmake .. -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON; make clean; make; cp libxlsxwriter.a ../src/
|
|
|
|
$(Q)cmake/xlsxwriter_unit
|
|
|
|
$(Q)$(MAKE) -C test/functional/src
|
|
|
|
$(Q)$(PYTEST) test/functional -v -k $(PYTESTFILES)
|
2019-12-26 17:45:46 +00:00
|
|
|
else
|
|
|
|
@echo "Skipping Cmake tests on 32 bit target."
|
|
|
|
endif
|
2019-12-26 17:13:43 +00: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-07-14 00:21:45 +01:00
|
|
|
ifndef NO_VALGRIND
|
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
|
|
|
|
2020-09-05 21:17:39 +01:00
|
|
|
docs_doxygen_only:
|
|
|
|
$(Q)$(MAKE) -C docs docs_doxygen_only
|
|
|
|
|
2020-09-08 09:39:02 +01:00
|
|
|
docs_external:
|
|
|
|
$(Q)make -C ../libxlsxwriter.github.io release
|
|
|
|
|
2021-03-22 17:09:31 +00:00
|
|
|
# Simple install.
|
2017-08-20 11:48:11 +01:00
|
|
|
install: all
|
2019-12-27 00:56:00 +01:00
|
|
|
$(Q)mkdir -p $(DESTDIR)$(PREFIX)/include
|
|
|
|
$(Q)cp -R include/* $(DESTDIR)$(PREFIX)/include
|
|
|
|
$(Q)mkdir -p $(DESTDIR)$(PREFIX)/lib
|
|
|
|
$(Q)cp lib/* $(DESTDIR)$(PREFIX)/lib
|
2021-03-19 11:15:28 -04:00
|
|
|
$(Q)mkdir -p $(DESTDIR)$(PREFIX)/lib/pkgconfig
|
|
|
|
$(Q)sed -e 's|@PREFIX@|$(PREFIX)|g' -e 's|@VERSION@|$(VERSION)|g' dev/release/pkg-config.txt > $(DESTDIR)$(PREFIX)/lib/pkgconfig/xlsxwriter.pc
|
2014-06-27 01:37:01 +01:00
|
|
|
|
2021-03-22 17:09:31 +00:00
|
|
|
# Simpler uninstall.
|
2016-06-24 01:22:29 +01:00
|
|
|
uninstall:
|
2019-12-27 00:56:00 +01:00
|
|
|
$(Q)rm -rf $(DESTDIR)$(PREFIX)/include/xlsxwriter*
|
|
|
|
$(Q)rm $(DESTDIR)$(PREFIX)/lib/libxlsxwriter.*
|
2021-03-19 11:15:28 -04:00
|
|
|
$(Q)rm $(DESTDIR)$(PREFIX)/lib/pkgconfig/xlsxwriter.pc
|
2016-06-24 01:22:29 +01:00
|
|
|
|
|
|
|
# Strip the lib files.
|
|
|
|
strip:
|
|
|
|
$(Q)strip lib/*
|
|
|
|
|
2014-06-27 01:37:01 +01:00
|
|
|
# Run a coverity static analysis.
|
2021-05-27 21:08:58 +01:00
|
|
|
coverity: all
|
2014-06-27 01:37:01 +01:00
|
|
|
$(Q)$(MAKE) -C src clean
|
|
|
|
$(Q)rm -f lib/*
|
|
|
|
$(Q)rm -rf cov-int
|
|
|
|
$(Q)rm -f libxlsxwriter-coverity.tgz
|
2020-08-17 23:05:39 +01:00
|
|
|
$(Q)../../cov-analysis-linux64-2019.03/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
|
|
|
|
2021-06-04 09:45:52 +01:00
|
|
|
# Run gcov coverage analysis.
|
|
|
|
gcov: third_party
|
|
|
|
$(Q)$(MAKE) -C src clean
|
|
|
|
$(Q)$(MAKE) -C src GCOV="--coverage" OPT_LEVEL="-O0"
|
|
|
|
$(Q)$(MAKE) -C src test_lib GCOV="--coverage"
|
|
|
|
$(Q)$(MAKE) -C test/unit test GCOV="--coverage"
|
|
|
|
$(Q)$(MAKE) -C test/functional/src GCOV="--coverage"
|
|
|
|
$(Q)$(PYTEST) test/functional -v -k $(PYTESTFILES)
|
|
|
|
$(Q)gcovr -r src --html-details -o build/libxlsxwriter_gcov.html
|
|
|
|
$(Q)gcovr -r . -f src --sonarqube build/coverage.xml
|
2021-06-02 13:54:59 +01:00
|
|
|
|
|
|
|
# Run sonarcloud analysis.
|
|
|
|
sonarcloud:
|
|
|
|
ifndef SONAR_TOKEN
|
|
|
|
@echo "Please define SONAR_TOKEN to run this analysis."
|
|
|
|
@exit 1
|
|
|
|
endif
|
|
|
|
$(Q)$(MAKE) clean
|
|
|
|
$(Q)../sonar-scanner-4.6.1.2450-macosx/bin/build-wrapper-macosx-x86 --out-dir .sonar_output make all
|
|
|
|
$(Q)../sonar-scanner-4.6.1.2450-macosx/bin/sonar-scanner \
|
|
|
|
-Dsonar.organization=jmcnamara-github \
|
|
|
|
-Dsonar.projectKey=jmcnamara_libxlsxwriter \
|
|
|
|
-Dsonar.sources=src \
|
|
|
|
-Dsonar.sourceEncoding=UTF-8 \
|
|
|
|
-Dsonar.cfamily.build-wrapper-output=.sonar_output \
|
|
|
|
-Dsonar.host.url=https://sonarcloud.io \
|
|
|
|
-Dsonar.cfamily.threads=4 \
|
|
|
|
-Dsonar.cfamily.cache.enabled=false
|
|
|
|
|
2017-01-07 00:54:13 +00:00
|
|
|
# Run a scan-build static analysis.
|
2021-05-27 21:08:58 +01:00
|
|
|
scan_build: all
|
2017-01-07 00:54:13 +00:00
|
|
|
$(Q)$(MAKE) -C src clean
|
|
|
|
$(Q)rm -f lib/*
|
|
|
|
$(Q)scan-build make -C src libxlsxwriter.a
|
|
|
|
$(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
|
2020-08-04 11:16:49 +01:00
|
|
|
$(Q)aspell --lang=en_US --check docs/src/examples.txt
|
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
|
2021-05-08 00:43:09 +01:00
|
|
|
@echo "Pushing to git main ..."
|
|
|
|
$(Q)git push origin main
|
2015-12-07 20:29:01 +00:00
|
|
|
$(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
|