blob: cb6c66edb9dd96edacbe69dc726d24a6bfc7916c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
noinst_LTLIBRARIES = libtest.la
AM_CPPFLAGS = \
-I$(top_srcdir)/src/lib \
-I$(top_srcdir)/src/lib-charset
libtest_la_SOURCES = \
fuzzer.c \
ostream-final-trickle.c \
test-common.c \
test-istream.c \
test-ostream.c \
test-subprocess.c
headers = \
fuzzer.h \
ostream-final-trickle.h \
test-common.h \
test-subprocess.h
pkginc_libdir=$(pkgincludedir)
pkginc_lib_HEADERS = $(headers)
|