From 76d70ca80c9fb9b18f76d9289d45e7619a83bc1d Mon Sep 17 00:00:00 2001 From: Will Estes Date: Tue, 9 Apr 2002 12:35:52 +0000 Subject: [PATCH] now that config.h lives in the top-level directory, we need to tell the testsuite --- tests/TEMPLATE/Makefile.am | 2 +- tests/test-array-nr/Makefile.am | 4 ++-- tests/test-array-r/Makefile.am | 4 ++-- tests/test-basic-nr/Makefile.am | 4 ++-- tests/test-basic-r/Makefile.am | 4 ++-- tests/test-bison-yylloc/Makefile.am | 4 ++-- tests/test-bison-yylval/Makefile.am | 4 ++-- tests/test-c-cpp-nr/Makefile.am | 3 ++- tests/test-c-cpp-r/Makefile.am | 4 ++-- 9 files changed, 17 insertions(+), 16 deletions(-) diff --git a/tests/TEMPLATE/Makefile.am b/tests/TEMPLATE/Makefile.am index ba590c1..c7f46e1 100644 --- a/tests/TEMPLATE/Makefile.am +++ b/tests/TEMPLATE/Makefile.am @@ -2,7 +2,7 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l parser.y test.input -CLEANFILES = scanner.c parser.c parser.h TEMPLATE +CLEANFILES = scanner.c parser.c parser.h TEMPLATE OUTPUT OBJS = scanner.o # parser.o INCLUDES = -I $(srcdir) -I $(top_srcdir) diff --git a/tests/test-array-nr/Makefile.am b/tests/test-array-nr/Makefile.am index a6e9335..12dff6a 100644 --- a/tests/test-array-nr/Makefile.am +++ b/tests/test-array-nr/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l test.input -CLEANFILES = scanner.c parser.c parser.h test-array-nr +CLEANFILES = scanner.c parser.c parser.h test-array-nr OUTPUT OBJS = scanner.o # parser.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a #YFLAGS = --defines --output=parser.c diff --git a/tests/test-array-r/Makefile.am b/tests/test-array-r/Makefile.am index dd731a6..b299420 100644 --- a/tests/test-array-r/Makefile.am +++ b/tests/test-array-r/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l test.input - CLEANFILES = scanner.c test-array-r +CLEANFILES = scanner.c test-array-r OUTPUT OBJS = scanner.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a #YFLAGS = --defines --output=parser.c diff --git a/tests/test-basic-nr/Makefile.am b/tests/test-basic-nr/Makefile.am index bc69c50..f97f342 100644 --- a/tests/test-basic-nr/Makefile.am +++ b/tests/test-basic-nr/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l test.input -CLEANFILES = scanner.c parser.c parser.h test-basic-nr +CLEANFILES = scanner.c parser.c parser.h test-basic-nr OUTPUT OBJS = scanner.o # parser.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a #YFLAGS = --defines --output=parser.c diff --git a/tests/test-basic-r/Makefile.am b/tests/test-basic-r/Makefile.am index 45ee61a..0c953e8 100644 --- a/tests/test-basic-r/Makefile.am +++ b/tests/test-basic-r/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l test.input -CLEANFILES = scanner.c parser.c parser.h test-basic-r +CLEANFILES = scanner.c parser.c parser.h test-basic-r OUTPUT OBJS = scanner.o # parser.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a #YFLAGS = --defines --output=parser.c diff --git a/tests/test-bison-yylloc/Makefile.am b/tests/test-bison-yylloc/Makefile.am index 91801ac..013f969 100644 --- a/tests/test-bison-yylloc/Makefile.am +++ b/tests/test-bison-yylloc/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l parser.y test.input -CLEANFILES = scanner.c parser.c parser.h test-bison-yylloc $(OBJS) +CLEANFILES = scanner.c parser.c parser.h test-bison-yylloc $(OBJS) OUTPUT OBJS = scanner.o parser.o main.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a YFLAGS = --defines --output=parser.c --name-prefix="test" diff --git a/tests/test-bison-yylval/Makefile.am b/tests/test-bison-yylval/Makefile.am index 0b9651b..339966d 100644 --- a/tests/test-bison-yylval/Makefile.am +++ b/tests/test-bison-yylval/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l parser.y test.input main.c -CLEANFILES = scanner.c parser.c parser.h test-bison-yylval $(OBJS) +CLEANFILES = scanner.c parser.c parser.h test-bison-yylval $(OBJS) OUTPUT OBJS = parser.o scanner.o main.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a YFLAGS = --defines --output=parser.c --name-prefix="test" diff --git a/tests/test-c-cpp-nr/Makefile.am b/tests/test-c-cpp-nr/Makefile.am index 671f15f..a94f21b 100644 --- a/tests/test-c-cpp-nr/Makefile.am +++ b/tests/test-c-cpp-nr/Makefile.am @@ -2,9 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l parser.y test.input +CLEANFILES = scanner.c parser.c parser.h test-cpp-nr$(OBJS) OUTPUT OBJS = $(srcdir)/scanner.o # $(srcdir)/parser.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a #YFLAGS = --defines --output=parser.c diff --git a/tests/test-c-cpp-r/Makefile.am b/tests/test-c-cpp-r/Makefile.am index 03bdf5c..2db24fa 100644 --- a/tests/test-c-cpp-r/Makefile.am +++ b/tests/test-c-cpp-r/Makefile.am @@ -2,10 +2,10 @@ BISON = @BISON@ FLEX = $(top_builddir)/flex EXTRA_DIST = scanner.l parser.y test.input -CLEANFILES = scanner.c parser.c parser.h test-c-cpp-r +CLEANFILES = scanner.c parser.c parser.h test-c-cpp-r $(OBJS) OUTPUT OBJS = scanner.o # parser.o -INCLUDES = -I $(srcdir) -I $(top_srcdir)/tests +INCLUDES = -I $(srcdir) -I $(top_srcdir) #LDFLAGS = $(top_srcdir)/libfl.a #YFLAGS = --defines --output=parser.c -- 2.40.0