summaryrefslogtreecommitdiffstats
path: root/test/parser/Makefile.am
blob: 10406706f6a2b097bfc276d1369b6e4bc9c3abe3 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; version 2 of the License.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

AUTOMAKE_OPTIONS = parallel-tests

AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-I$(top_srcdir)/lib \
	-I$(top_srcdir)/discover \
	-DLOCAL_STATE_DIR='"$(localstatedir)"' \
	-DTEST_CONF_BASE='"$(srcdir)/data"' \
	-DDEBUG -DPETITBOOT_TEST


AM_CFLAGS = -O0 -ggdb -Wall -Wextra -Werror

TESTS = test-null \
	test-grub2-single \
	test-grub2-f18-ppc64 \
	test-kboot-single \
	test-yaboot-single \
	test-yaboot-external

check_PROGRAMS = $(TESTS)
check_LIBRARIES = $(test_libs)
check_DATA = data/grub2-f18-ppc64.conf

common_libs = $(top_builddir)/lib/libpbcore.la
test_libs = libtest.o

libtest.o: $(libtest_o_OBJECTS)
	$(LD) -o $@ -r $^

# objects under test
parser_test_objs = $(top_srcdir)/discover/yaboot-parser.c \
		   $(top_srcdir)/discover/kboot-parser.c \
		   $(top_srcdir)/discover/grub2-parser.c \
		   $(top_srcdir)/discover/resource.c \
		   $(top_srcdir)/discover/paths.c \
		   $(top_srcdir)/discover/device-handler.c \
		   $(top_srcdir)/discover/parser-conf.c


LDADD = $(common_libs) $(test_libs)

libtest_o_SOURCES = utils.c parser-test.h handler.c main.c $(parser_test_objs)

$(check_PROGRAMS): %: %.embedded-config.o
$(check_PROGRAMS): LDADD += $@.embedded-config.o

extract_config = $(srcdir)/extract-config.awk

%.embedded-config.c: %.c $(extract_config)
	gawk --file=$(extract_config) $^ > $@

EXTRA_DIST = $(check_DATA) $(extract_config)

CLEANFILES = $(foreach f, $(check_PROGRAMS), \
		$(f).embedded-config.c $(f).embedded-config.o)
OpenPOWER on IntegriCloud