Indicated the name of the definition header file specifically to pacify some bison version

This commit is contained in:
Efi Fogel 2006-11-05 10:20:22 +00:00
parent be1d6039b6
commit 8e66291109
1 changed files with 2 additions and 2 deletions

View File

@ -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$@ $<