aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 4643fde9fd0610bb1dd103798321c2f70f13f6b1 (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
# This file is part of varnish-mib -*- automake -*-
# Copyright (C) 2014 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\
 sha256.c\
 sha256.h\
 varnish_mib.c\
 varnish_mib.h\
 vcli.c

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" \
	 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`

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

AM_CPPFLAGS=-I. ${VARNISHAPI_CFLAGS} -I$NET_SNMP_INCLUDES

mibdir=@MIBDIR@
mib_DATA = varnish_mib.mib2c

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.