aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 55cdb85019d5834cb77e93e6d9a88862ba59ec35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# This file is part of varnish-mib -*- automake -*-
# Copyright (C) 2014-2015 Sergey Poznyakoff
#
# varnish-mib is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# varnish-mib is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with varnish-mib.  If not, see <http://www.gnu.org/licenses/>.

dlmoddir=@DLMODDIR@
dlmod_LTLIBRARIES = varnish-mib.la

varnish_mib_la_SOURCES = \
 auth.c\
 ban.c\
 backend.h\
 belex.l\
 betab.c\
 modconf.h\
 modconf.c\
 sha256.c\
 sha256.h\
 varnish_mib.c\
 varnish_mib.h\
 vcli.c\
 vclient.h

BUILT_SOURCES = \
 varnish_mib.c\
 varnish_mib.h

varnish_mib.c varnish_mib.h: varnish_mib.mib2c VARNISH-MIB.txt

.mib2c.c:
	MIBDIRS=${top_srcdir}/src:${NET_SNMP_MIBDIRS}\
        MIBS="VARNISH-MIB:${NET_SNMP_MIBS}" \
        PERL5LIB=${top_srcdir}/lib \
	 mib2c -c $< -f $@ varnish

#NET_SNMP_INCLUDES = `$(NET_SNMP_CONFIG) --cflags`
#NET_SNMP_INCLUDES =
NET_SNMP_LIBS = `$(NET_SNMP_CONFIG) --libs`
NET_SNMP_EXLIBS = `$(NET_SNMP_CONFIG) --external-libs`
NET_SNMP_MIBDIRS = `net-snmp-config --mibdirs`
NET_SNMP_MIBS = `net-snmp-config --default-mibs`

AM_LDFLAGS = \
 -module \
 -export-dynamic\
 -avoid-version \
 -rpath '$(dlmoddir)'\
 ${VARNISHAPI_LIBS}\
 $(NET_SNMP_LIBS)\
 $(NET_SNMP_EXLIBS)

AM_CPPFLAGS=-I. ${VARNISHAPI_CFLAGS}

mibdir=@MIBDIR@
mib_DATA = VARNISH-MIB.txt

dist_man_MANS = varnish-mib.8

EXTRA_DIST = VARNISH-MIB.txt varnish_mib.mib2c

Return to:

Send suggestions and report system problems to the System administrator.