libxlsxwriter/Makefile

88 lines
2.0 KiB
Makefile
Raw Normal View History

2014-06-08 17:40:59 +01:00
###############################################################################
#
# Makefile for libxlsxwriter library.
#
# Copyright 2014, John McNamara, jmcnamara@cpan.org
#
# Keep the output quiet by default.
Q=@
ifdef V
Q=
endif
.PHONY: docs tags examples
# Build the libs.
all :
$(Q)$(MAKE) -C third_party/minizip
$(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 :
$(Q)$(MAKE) -C examples
2014-06-08 17:40:59 +01:00
# Clean src and test directories.
clean :
$(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/*
2014-06-08 17:40:59 +01:00
# Run the unit tests.
test : all test_functional test_unit
$(Q)$(MAKE) test -C test/unit
2014-06-08 17:40:59 +01:00
# Run the functional tests.
test_functional : all
$(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 ..."
$(Q)$(MAKE) -C third_party/minizip
$(Q)$(MAKE) -C src test_lib
$(Q)$(MAKE) -C test/unit test
2014-06-08 17:40:59 +01:00
# Test the functional test exes with valgrind.
test_valgrind : all
$(Q)$(MAKE) -C test/functional/src test_valgrind
$(Q)$(MAKE) -C examples test_valgrind
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 :
$(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.
docs:
$(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
# 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
$(Q)../cov-analysis-macosx-7.0.2/bin/cov-build --dir cov-int make -C src libxlsxwriter.a
$(Q)tar -czf libxlsxwriter-coverity.tgz cov-int