2013-11-26 22:53:19 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2013-11-26 22:56:50 +00:00
|
|
|
SUBDIRS = . tests
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2014-07-11 19:01:00 +00:00
|
|
|
noinst_LIBRARIES = libmonitoringplug.a
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2014-07-11 19:01:00 +00:00
|
|
|
AM_CPPFLAGS = -DNP_STATE_DIR_PREFIX=\"$(localstatedir)\" \
|
|
|
|
-I$(srcdir) -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2023-10-18 07:29:37 +00:00
|
|
|
libmonitoringplug_a_SOURCES = utils_base.c utils_disk.c utils_tcp.c utils_cmd.c maxfd.c
|
2023-10-18 09:45:11 +00:00
|
|
|
EXTRA_DIST = utils_base.h utils_disk.h utils_tcp.h utils_cmd.h parse_ini.h extra_opts.h maxfd.h
|
2013-11-26 22:55:28 +00:00
|
|
|
|
|
|
|
if USE_PARSE_INI
|
2014-07-11 19:01:00 +00:00
|
|
|
libmonitoringplug_a_SOURCES += parse_ini.c extra_opts.c
|
2013-11-26 22:55:28 +00:00
|
|
|
endif USE_PARSE_INI
|
2013-11-26 22:53:19 +00:00
|
|
|
|
2013-11-26 22:54:57 +00:00
|
|
|
test test-debug:
|
|
|
|
cd tests && make $@
|
2013-11-26 22:53:19 +00:00
|
|
|
|