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