X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=test%2Fparser%2FMakefile.am;h=1a5e43a1b5c3b53f607d405ccca42ab40448e236;hp=9bb7c16a5722b503b36715804ddd4be01c1ff113;hb=2ea5eb23b027519372dd20fbe8f958c06ac2aa6c;hpb=d6166b471a9356355ed16747de3c0febd4b8cd3e diff --git a/test/parser/Makefile.am b/test/parser/Makefile.am index 9bb7c16..1a5e43a 100644 --- a/test/parser/Makefile.am +++ b/test/parser/Makefile.am @@ -33,14 +33,18 @@ TESTS = \ test-grub2-ubuntu-13_04-x86 \ test-kboot-single \ test-yaboot-single \ + test-yaboot-partition \ + test-yaboot-partition-override \ test-yaboot-external \ test-yaboot-root-global \ test-yaboot-root-override \ test-yaboot-device-override \ test-yaboot-default \ test-yaboot-rh8-ppc64 \ + test-pxe-empty \ test-pxe-single \ - test-pxe-initrd-in-append + test-pxe-initrd-in-append \ + test-pxe-default $(TESTS): %: %.embedded-config.o $(TESTS): LDADD += $@.embedded-config.o @@ -54,7 +58,6 @@ extract_config = $(srcdir)/extract-config.awk parser_objs = \ $(top_srcdir)/discover/yaboot-parser.c \ $(top_srcdir)/discover/kboot-parser.c \ - $(top_srcdir)/discover/grub2-parser.c \ $(top_srcdir)/discover/pxe-parser.c \ $(top_srcdir)/discover/resource.c \ $(top_srcdir)/discover/paths.c \ @@ -68,7 +71,10 @@ libtest_ro_SOURCES = \ parser-test.h \ $(parser_objs) -libtest.ro$(EXEEXT): $(libtest_ro_OBJECTS) +libtest_ro_LDADD = \ + ../../discover/grub2/grub2-parser.ro + +libtest.ro$(EXEEXT): $(libtest_ro_OBJECTS) $(libtest_ro_LDADD) $(LD) -o $@ -r $^ check_PROGRAMS = $(TESTS) libtest.ro