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