mirror of
https://github.com/jmcnamara/libxlsxwriter.git
synced 2026-05-15 14:15:54 -06:00
Added make target for coverity static analysis.
This commit is contained in:
parent
3af4bd074d
commit
e432b1075d
2 changed files with 12 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -32,7 +32,8 @@ _temp.c
|
|||
examples/*
|
||||
!examples/*.c
|
||||
!examples/Makefile
|
||||
|
||||
cov-int
|
||||
libxlsxwriter-coverity.tgz
|
||||
|
||||
third_party/gtest-1.7.0/Makefile
|
||||
third_party/gtest-1.7.0/build-aux/config.h
|
||||
|
|
|
|||
10
Makefile
10
Makefile
|
|
@ -75,3 +75,13 @@ docs:
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue