mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Simplified some Make targets.
This commit is contained in:
parent
6d6d99eeaf
commit
c4d35ec9f0
13
Makefile
13
Makefile
@ -78,6 +78,11 @@ clean :
|
||||
$(Q)$(MAKE) clean -C third_party/md5
|
||||
$(Q)$(MAKE) clean -C third_party/dtoa
|
||||
|
||||
# Clean src and lib dir only, as a precursor for static analysis.
|
||||
clean_src :
|
||||
$(Q)$(MAKE) clean -C src
|
||||
$(Q)rm -f lib/*
|
||||
|
||||
# Run the unit tests.
|
||||
test : all test_cpp test_unit test_functional
|
||||
|
||||
@ -165,9 +170,7 @@ strip:
|
||||
$(Q)strip lib/*
|
||||
|
||||
# Run a coverity static analysis.
|
||||
coverity: all
|
||||
$(Q)$(MAKE) -C src clean
|
||||
$(Q)rm -f lib/*
|
||||
coverity: clean_src third_party
|
||||
$(Q)rm -rf cov-int
|
||||
$(Q)rm -f libxlsxwriter-coverity.tgz
|
||||
$(Q)../../cov-analysis-linux64-2019.03/bin/cov-build --dir cov-int make -C src libxlsxwriter.a
|
||||
@ -231,9 +234,7 @@ endif
|
||||
|
||||
|
||||
# Run a scan-build static analysis.
|
||||
scan_build: all
|
||||
$(Q)$(MAKE) -C src clean
|
||||
$(Q)rm -f lib/*
|
||||
scan_build: clean_src third_party
|
||||
$(Q)scan-build make -C src libxlsxwriter.a
|
||||
$(Q)$(MAKE) -C src clean
|
||||
$(Q)rm -f lib/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user