Removed unused hatch files.
[supertux.git] / mk / jam / bisonflex.jam
index 3ec765b..2809261 100644 (file)
@@ -69,15 +69,14 @@ if $(BISON)
   {
     local cppfile = [ LocateTarget $(<:S=.cpp) : $(SUBDIR) ] ;
     local headerfile = [ LocateTarget $(<:S=.hpp) : $(SUBDIR) ] ;
-    headerfile = $(headerfile:G=) ;
     local object = [ CompileObjects $(cppfile) ] ;
 
     # jams header file scannning doesn't use grist so we have to workaround this
     # here
     Includes $(headerfile:G=) : $(headerfile) ;
 
-    Bison $(cppfile) : $(<) ;
-#Includes $(cppfile) : $(headerfile) ;
+    Bison $(cppfile) $(headerfile) : $(<) ;
+#Includes $(cppfile) : $(headerfile:G=) ;
 
     return $(object) ;
   }