1## Process this file with automake to produce Makefile.in
2
3exampledir=${datadir}/examples/@PACKAGE@/Automated
4
5if ENABLE_EXAMPLES
6if ENABLE_AUTOMATED
7
8example_PROGRAMS = AutomatedTest
9
10AutomatedTest_SOURCES = AutomatedTest.c
11AutomatedTest_LDADD = -lcunit -lcunitexamples
12AutomatedTest_LDFLAGS = -L.. -lm
13INCLUDES = -I..
14
15if ENABLE_CURSES
16AutomatedTest_LDADD += -l$(CURSES_LIB)
17endif
18
19example_DATA = README
20
21endif
22endif
23
24