blob: f97cf6226148743d579e3d7dd85966ad88ca7fc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
noinst_LTLIBRARIES = libold_stats.la
AM_CPPFLAGS = \
-I$(top_srcdir)/src/lib \
-I$(top_srcdir)/src/lib-master
libold_stats_la_SOURCES = \
stats.c \
stats-connection.c \
stats-parser.c
headers = \
stats.h \
stats-connection.h \
stats-parser.h
pkginc_libdir = $(pkgincludedir)
pkginc_lib_HEADERS = $(headers)
|