mirror of
https://github.com/TREX-CoE/trexio.git
synced 2024-12-23 04:43:57 +01:00
Add cppcheck in Makefile
This commit is contained in:
parent
1b0a60f2fe
commit
10483b882c
@ -37,13 +37,19 @@ endif
|
||||
RM=rm -f
|
||||
|
||||
OBJECT_FILES= trexio.o trexio_text.o trexio_hdf5.o
|
||||
SOURCE_FILES= test.c trexio.c trexio_hdf5.c trexio_text.c
|
||||
HEADER_FILES= trexio.h trexio_text.h trexio_hdf5.h trexio_s.h
|
||||
|
||||
export CC CFLAGS FC FFLAGS LIBS
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
libtrexio.so: $(OBJECT_FILES) $(HEADER_FILES)
|
||||
cppcheck.out: $(HEADER_FILES) $(SOURCE_FILES)
|
||||
cppcheck --addon=cert -q --error-exitcode=1 \
|
||||
--enable=style,warning,unusedFunction,performance,portability,missingInclude \
|
||||
--language=c -rp --std=c99 -v $(SOURCE_FILES) 2>$@
|
||||
|
||||
libtrexio.so: $(OBJECT_FILES) $(HEADER_FILES) cppcheck.out
|
||||
$(CC) -shared $(OBJECT_FILES) -o libtrexio.so
|
||||
|
||||
fortran: libtrexio.so trexio_f.f90
|
||||
|
@ -27,8 +27,6 @@ int test_h5write() {
|
||||
trexio_t* file = NULL;
|
||||
trexio_exit_code rc;
|
||||
|
||||
rc = TREXIO_SUCCESS;
|
||||
|
||||
int64_t num = 12;
|
||||
|
||||
double coord[36] = {
|
||||
|
Loading…
Reference in New Issue
Block a user