-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile-tests.am
29 lines (18 loc) · 1.32 KB
/
Makefile-tests.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
noinst_PROGRAMS += tests/test-lexer tests/test-parser tests/test-generator tests/test-heap
tests_test_lexer_SOURCES = tests/test-lexer.c
tests_test_lexer_LDADD = $(GLIB_LIBS) libpanda.la
tests_test_lexer_CFLAGS = $(AM_CFLAGS) $(WARN_CFLAGS)
tests_test_lexer_CPPFLAGS = $(GLIB_CFLAGS) $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/libs/libmpa
tests_test_parser_SOURCES = tests/test-parser.c
tests_test_parser_LDADD = $(GLIB_LIBS) libpanda.la
tests_test_parser_CFLAGS = $(AM_CFLAGS) $(WARN_CFLAGS)
tests_test_parser_CPPFLAGS = $(GLIB_CFLAGS) $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/libs/libtommath -I$(top_srcdir)/libs/libmpa
tests_test_generator_SOURCES = tests/test-generator.c
tests_test_generator_LDADD = $(GLIB_LIBS) libpanda.la
tests_test_generator_CFLAGS = $(AM_CFLAGS) $(WARN_CFLAGS)
tests_test_generator_CPPFLAGS = $(GLIB_CFLAGS) $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/libs/libtommath -I$(top_srcdir)/libs/libmpa
tests_test_heap_SOURCES = tests/test-heap.c
tests_test_heap_LDADD = $(GLIB_LIBS) libpanda.la
tests_test_heap_CFLAGS = $(AM_CFLAGS) $(WARN_CFLAGS)
tests_test_heap_CPPFLAGS = $(GLIB_CFLAGS) $(AM_CPPFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/libs/libtommath -I$(top_srcdir)/libs/libmpa
DISTCLEANFILES += tests/test-lexer tests/test-parser tests/test-generator tests/test-heap