aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: c17447fd1d031dae59bad3cd965e6f254fe3e73d (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 Mysqlstat -*- automake -*-
# Copyright (C) 2016 Sergey Poznyakoff
#
# Mysqlstat 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.
#
# Mysqlstat 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 Mysqlstat.  If not, see <http://www.gnu.org/licenses/>.

dlmoddir=@DLMODDIR@
dlmod_LTLIBRARIES = mysqlstat.la

mysqlstat_la_SOURCES = \
 mysqlstat.c\
 mysqlstat.h\
 mysqlstat_mib.c\
 mysqlstat_mib.h

BUILT_SOURCES = \
 mysqlstat_mib.c\
 mysqlstat_mib.h

mysqlstat_mib.c mysqlstat_mib.h: mysqlstat_mib.mib2c MYSQL-STAT-MIB.txt

.mib2c.c:
	MIBDIRS=${top_srcdir}/src:${NET_SNMP_MIBDIRS} MIBS="+MYSQL-STAT-MIB" \
	 mib2c -c $< -f $@ mysql

#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)'\
 ${MYSQL_LIBS}\
 $(NET_SNMP_LIBS)\
 $(NET_SNMP_EXLIBS)

AM_CPPFLAGS=\
 -I. \
 ${MYSQL_CFLAGS}\
 -DCONFDIR=\"$(CONFDIR)\"

mibdir=@MIBDIR@
mib_DATA = MYSQL-STAT-MIB.txt

dist_man_MANS = mysqlstat.8

EXTRA_DIST = MYSQL-STAT-MIB.txt mysqlstat_mib.mib2c

Return to:

Send suggestions and report system problems to the System administrator.