diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-04-25 00:05:07 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-04-25 00:05:07 +0300 |
commit | caf86824c8486ec64f4759cd2a93c8bdb0b5a018 (patch) | |
tree | 409ad0538da48b943c0f23a397fbed8f04f022c6 /c_implementation | |
parent | 73cf1ad8d88213ba511de7cbab318f6b05d84fa0 (diff) | |
download | arching-kaos-tools-caf86824c8486ec64f4759cd2a93c8bdb0b5a018.tar.gz arching-kaos-tools-caf86824c8486ec64f4759cd2a93c8bdb0b5a018.tar.bz2 arching-kaos-tools-caf86824c8486ec64f4759cd2a93c8bdb0b5a018.zip |
[Makefile.am] Update
Diffstat (limited to 'c_implementation')
-rw-r--r-- | c_implementation/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/c_implementation/Makefile.am b/c_implementation/Makefile.am index e0da316..1c83779 100644 --- a/c_implementation/Makefile.am +++ b/c_implementation/Makefile.am @@ -16,12 +16,14 @@ libakdatetime_la_SOURCES = $(top_srcdir)/src/akdatetime.c include_HEADERS = include/libaklog.h include/libaksettings.h include/libakfs.h -bin_PROGRAMS = akt akdefuse +bin_PROGRAMS = akt akdefuse aklog akt_LDADD = libaklog.la libakfs.la libaksettings.la akt_SOURCES = src/ak.c akdefuse_CFLAGS = -I/usr/include/fuse3 -lfuse3 -lpthread akdefuse_LDADD = libaklog.la libakfs.la akdefuse_SOURCES = src/akfs_defuse.c +aklog_LDADD = libaklog.la +aklog_SOURCES = src/aklog_main.c check_PROGRAMS = test_aklog test_aksettings test_akfs test_akutils test_akdatetime test_akdatetime_SOURCES = ./tests/test_akdatetime.c ./src/akdatetime.c @@ -45,3 +47,5 @@ TESTS = $(check_PROGRAMS) CLEANFILES = $(TESTS) +cppcheck: + cppcheck --std=c99 --enable=all --check-library -I /usr/include -I $(top_srcdir)/include/*.h $(top_srcdir)/include/*.h $(top_srcdir)/src/*.c $(top_srcdir)/tests/test*.c |