2003-02-10 18:32:40 -05:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
2009-01-13 04:31:30 -05:00
|
|
|
SUBDIRS = . tests
|
2006-07-13 08:50:23 -04:00
|
|
|
|
2014-01-18 03:40:24 -05:00
|
|
|
noinst_LIBRARIES = libmonitoringplug.a
|
2003-02-10 18:32:40 -05:00
|
|
|
|
2014-03-08 11:17:27 -05:00
|
|
|
AM_CPPFLAGS = -DNP_STATE_DIR_PREFIX=\"$(localstatedir)\" \
|
|
|
|
|
-I$(srcdir) -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins
|
2003-03-13 17:20:30 -05:00
|
|
|
|
2014-01-18 03:40:24 -05:00
|
|
|
libmonitoringplug_a_SOURCES = utils_base.c utils_disk.c utils_tcp.c utils_cmd.c
|
2008-04-02 05:11:44 -04:00
|
|
|
EXTRA_DIST = utils_base.h utils_disk.h utils_tcp.h utils_cmd.h parse_ini.h extra_opts.h
|
|
|
|
|
|
|
|
|
|
if USE_PARSE_INI
|
2014-01-18 03:40:24 -05:00
|
|
|
libmonitoringplug_a_SOURCES += parse_ini.c extra_opts.c
|
2008-04-02 05:11:44 -04:00
|
|
|
endif USE_PARSE_INI
|
2006-07-10 04:44:39 -04:00
|
|
|
|
2007-12-11 20:27:48 -05:00
|
|
|
test test-debug:
|
|
|
|
|
cd tests && make $@
|
2006-07-13 08:50:23 -04:00
|
|
|
|