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
14if USE_CXX
15CXX_PROGS =		\
16	test01-cxx
17
18test01_cxx_SOURCES = test01-cxx.C
19endif
20
21TEST_PROGS = $(C_PROGS) $(CXX_PROGS)
22
23EXTRA_DIST = 		\
24	test01.ref	\
25	test01.pl	\
26	test01.php	\
27	TestList
28
29check_PROGRAMS = \
30	$(TEST_PROGS)
31
32test01_SOURCES = test01.c
33
34CLEANFILES = dotests test01.swf php.ini
35
36include ../../Makefile.inc
37