blob: 928b4b66a9dc20fcc4ffe96f16fab3ab83e44f38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
AM_CPPFLAGS = -D_GNU_SOURCE
AM_CFLAGS = -Wall
# add all supported modules
if supports_i8k
KSGRD_SUPPORTS = -DHAVE_I8K_SUPPORT
endif
INCLUDES = -I$(srcdir)/../../CContLib -I$(srcdir)/.. $(KSGRD_SUPPORTS) $(all_includes)
noinst_LIBRARIES = libksysguardd.a
libksysguardd_a_SOURCES = ProcessList.c Memory.c stat.c netdev.c apm.c acpi.c \
loadavg.c cpuinfo.c lmsensors.c netstat.c diskstat.c logfile.c i8k.c
|