1SUBDIRS =
2
3AM_CPPFLAGS = \
4	-I$(top_srcdir) \
5	-I$(top_srcdir)/src \
6	-I$(top_srcdir)/test
7
8LDADD = $(top_builddir)/src/libming.la
9
10TESTS = dotests
11
12C_PROGS =		\
13	test01
14
15if USE_CXX
16CXX_PROGS =		\
17	test01-cxx
18
19test01_cxx_SOURCES = test01-cxx.C
20endif
21
22TEST_PROGS = $(C_PROGS) $(CXX_PROGS)
23
24EXTRA_DIST = 		\
25	test01.ref	\
26	test01.php	\
27	test01.pl	\
28	TestList
29
30check_PROGRAMS = \
31	$(TEST_PROGS)
32
33CLEANFILES = dotests php.ini \
34	test01.swf
35
36include ../../Makefile.inc
37