blob: 70c2c612f6c2d982dc9cfcde6c00f89b6c51edb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
sbin_PROGRAMS = rrdbot-create rrdbot-get
rrdbot_create_SOURCES = rrdbot-create.c
rrdbot_create_CFLAGS = -I${top_srcdir}/common/ -I${top_srcdir} \
-DCONF_PREFIX=\"$(sysconfdir)\" -DDATA_PREFIX=\"$(datadir)\"
rrdbot_create_LDADD = \
$(top_builddir)/common/libcommon.a
rrdbot_get_SOURCES = rrdbot-get.c \
../mib/mib-parser.c ../mib/mib-parser.h
rrdbot_get_CFLAGS = -I${top_srcdir}/common/ -I${top_srcdir} \
-DCONF_PREFIX=\"$(sysconfdir)\" -DDATA_PREFIX=\"$(datadir)\"
rrdbot_get_LDADD = \
$(top_builddir)/common/libcommon.a \
$(top_builddir)/bsnmp/libbsnmp-custom.a
|