projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44745b9
)
manually add dependency from lexer.cpp to parser.hpp
author
Matthias Braun
<matze@braunis.de>
Sun, 17 Jul 2005 11:50:37 +0000
(11:50 +0000)
committer
Matthias Braun
<matze@braunis.de>
Sun, 17 Jul 2005 11:50:37 +0000
(11:50 +0000)
SVN-Revision: 2725
tools/miniswig/Jamfile
patch
|
blob
|
history
diff --git
a/tools/miniswig/Jamfile
b/tools/miniswig/Jamfile
index
9c096af
..
993efa4
100644
(file)
--- a/
tools/miniswig/Jamfile
+++ b/
tools/miniswig/Jamfile
@@
-6,5
+6,10
@@
if $(LEX) && $(BISON) {
C++Flags miniswig : -Wno-unused ;
IncludeDir miniswig : . ;
ExternalLibs miniswig : LEX ;
+
+# we gotta run bison before flex
+ lexer_cpp = [ SearchSource lexer.cpp ] ;
+ lexer_o = [ LocateTarget $(lexer_cpp:S=.o) ] ;
+ Depends lexer_o : [ LocateTarget parser.cpp : $(SUBDIR) ] ;
}