]> git.ozlabs.org Git - petitboot/blob - test/parser/Makefile.am
discover/yaboot: Remove known_names list
[petitboot] / test / parser / Makefile.am
1 #  This program is free software; you can redistribute it and/or modify
2 #  it under the terms of the GNU General Public License as published by
3 #  the Free Software Foundation; version 2 of the License.
4 #
5 #  This program is distributed in the hope that it will be useful,
6 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
7 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8 #  GNU General Public License for more details.
9 #
10 #  You should have received a copy of the GNU General Public License
11 #  along with this program; if not, write to the Free Software
12 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
13
14 AUTOMAKE_OPTIONS = parallel-tests
15
16 AM_CPPFLAGS = \
17         -I$(top_srcdir) \
18         -I$(top_srcdir)/lib \
19         -I$(top_srcdir)/discover \
20         -DLOCAL_STATE_DIR='"$(localstatedir)"' \
21         -DTEST_CONF_BASE='"$(srcdir)/data"' \
22         -DDEBUG -DPETITBOOT_TEST
23
24 AM_CFLAGS = -O0 -ggdb -Wall -Wextra -Werror
25
26 LDADD = $(top_builddir)/lib/libpbcore.la libtest.ro
27
28 TESTS = \
29         test-null \
30         test-grub2-single \
31         test-grub2-default \
32         test-grub2-default-index \
33         test-grub2-default-multiword \
34         test-grub2-multiple-resolve \
35         test-grub2-single-line-if \
36         test-grub2-load-env \
37         test-grub2-save-env \
38         test-grub2-saved-default \
39         test-grub2-nondefault-prefix \
40         test-grub2-f18-ppc64 \
41         test-grub2-ubuntu-13_04-x86 \
42         test-grub2-lexer-error \
43         test-grub2-parser-error \
44         test-kboot-single \
45         test-yaboot-empty \
46         test-yaboot-single \
47         test-yaboot-partition \
48         test-yaboot-partition-override \
49         test-yaboot-external \
50         test-yaboot-root-global \
51         test-yaboot-root-override \
52         test-yaboot-device-override \
53         test-yaboot-global-state \
54         test-yaboot-default \
55         test-yaboot-rh8-ppc64 \
56         test-pxe-empty \
57         test-pxe-single \
58         test-pxe-initrd-in-append \
59         test-pxe-mac-without-conf \
60         test-pxe-ip-without-conf \
61         test-pxe-non-url-conf \
62         test-pxe-local \
63         test-unresolved-remove
64
65 $(TESTS): %: %.embedded-config.o
66 $(TESTS): LDADD += $@.embedded-config.o
67
68 extract_config = $(srcdir)/extract-config.awk
69
70 %.embedded-config.c: %.c $(extract_config)
71         $(AWK) -f $(extract_config) $< > $@
72
73 # objects under test
74 parser_objs = \
75         $(top_srcdir)/discover/yaboot-parser.c \
76         $(top_srcdir)/discover/kboot-parser.c \
77         $(top_srcdir)/discover/pxe-parser.c \
78         $(top_srcdir)/discover/resource.c \
79         $(top_srcdir)/discover/paths.c \
80         $(top_srcdir)/discover/device-handler.c \
81         $(top_srcdir)/discover/parser-conf.c \
82         $(top_srcdir)/discover/user-event.c \
83         $(top_srcdir)/discover/event.c
84
85 libtest_ro_SOURCES = \
86         main.c \
87         utils.c \
88         handler.c \
89         parser-test.h \
90         $(parser_objs)
91
92 libtest_ro_LDADD = \
93         ../../discover/grub2/grub2-parser.ro
94
95 libtest.ro$(EXEEXT): $(libtest_ro_OBJECTS) $(libtest_ro_LDADD)
96         $(LD) -o $@ -r $^
97
98 check_PROGRAMS = $(TESTS) libtest.ro
99
100 check_DATA = \
101         data/grub2-f18-ppc64.conf \
102         data/grub2-ubuntu-13_04-x86.conf \
103         data/yaboot-rh8-ppc64.conf
104
105 EXTRA_DIST = $(check_DATA) $(extract_config)
106
107 CLEANFILES = \
108         $(foreach f, $(TESTS), $(f).embedded-config.c $(f).embedded-config.o)
109
110 MAINTAINERCLEANFILES = Makefile.in