1AM_CXXFLAGS = -I$(top_srcdir)/src \
2	      -isystem$(top_srcdir) \
3	      -Wno-unused-parameter
4
5noinst_PROGRAMS = test_filereader \
6		  test_symbol \
7		  test_data \
8		  test_message
9
10test_filereader_SOURCES = test_filereader.cpp
11test_filereader_LDADD = ../libebus.a -lpthread
12
13test_symbol_SOURCES = test_symbol.cpp
14test_symbol_LDADD = ../libebus.a -lpthread
15
16test_data_SOURCES = test_data.cpp
17test_data_LDADD = -lpthread ../libebus.a
18
19test_message_SOURCES = test_message.cpp
20test_message_LDADD = ../libebus.a -lpthread
21
22if CONTRIB
23test_data_LDADD += ../contrib/libebuscontrib.a
24test_message_LDADD += ../contrib/libebuscontrib.a
25endif
26
27distclean-local:
28	-rm -f Makefile.in
29	-rm -rf .libs
30