From 8e66291109105e4b4d42d85efd90fe6ec1d7da81 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Sun, 5 Nov 2006 10:20:22 +0000 Subject: [PATCH] Indicated the name of the definition header file specifically to pacify some bison version --- Benchmark/src/Benchmark/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Benchmark/src/Benchmark/makefile b/Benchmark/src/Benchmark/makefile index 6b4f79b3265..1c03663cb44 100644 --- a/Benchmark/src/Benchmark/makefile +++ b/Benchmark/src/Benchmark/makefile @@ -74,7 +74,7 @@ clean: #---------------------------------------------------------------------# %$(OBJ_EXT): %.cpp - $(CGAL_CXX) $(CXXFLAGS) -I. -c $< + $(CGAL_CXX) $(CXXFLAGS) -c $< .SUFFIXES: .cpp $(SUFFIXES) @@ -85,7 +85,7 @@ LEX ?=flex BISON ?=bison %.cpp %.hpp : %.y - $(BISON) -d $< -o $*.cpp + $(BISON) --defines=$*.hpp $< -o $*.cpp %.cpp : %.l $(LEX) -8 -o$@ $<