Changeset 38225 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 7, 2008, 9:48:38 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/AllInOneFile.cpp
r38205 r38225 57 57 #include "runtime/FunctionConstructor.cpp" 58 58 #include "runtime/FunctionPrototype.cpp" 59 #include " grammar.cpp"59 #include "Grammar.cpp" 60 60 #include "runtime/Identifier.cpp" 61 61 #include "runtime/JSString.cpp" -
trunk/JavaScriptCore/ChangeLog
r38221 r38225 1 2008-11-07 Alp Toker <[email protected]> 2 3 More grammar.cpp -> Grammar.cpp build fixes. 4 5 * AllInOneFile.cpp: 6 * GNUmakefile.am: 7 1 8 2008-11-07 Simon Hausmann <[email protected]> 2 9 -
trunk/JavaScriptCore/GNUmakefile.am
r38205 r38225 304 304 if ENABLE_DEBUG 305 305 javascriptcore_built_sources += \ 306 DerivedSources/ grammar.cpp \307 DerivedSources/ grammar.h306 DerivedSources/Grammar.cpp \ 307 DerivedSources/Grammar.h 308 308 309 309 javascriptcore_sources += \ … … 389 389 else 390 390 javascriptcore_built_nosources += \ 391 DerivedSources/ grammar.cpp \392 DerivedSources/ grammar.h391 DerivedSources/Grammar.cpp \ 392 DerivedSources/Grammar.h 393 393 394 394 javascriptcore_sources += \ … … 396 396 endif # END ENABLE_DEBUG 397 397 398 DerivedSources/ grammar.h: DerivedSources/grammar.cpp;399 400 DerivedSources/ grammar.cpp: $(srcdir)/JavaScriptCore/parser/Grammar.y398 DerivedSources/Grammar.h: DerivedSources/Grammar.cpp; 399 400 DerivedSources/Grammar.cpp: $(srcdir)/JavaScriptCore/parser/Grammar.y 401 401 $(BISON) -d -p kjsyy $(srcdir)/JavaScriptCore/parser/Grammar.y -o $@ > bison_out.txt 2>&1 402 $(PERL) -p -e 'END { if ($$conflict) { unlink " grammar.cpp"; die; } } $$conflict ||= /conflict/' < bison_out.txt403 cat $(GENSOURCES)/ grammar.hpp > $(GENSOURCES)/grammar.h404 rm -f $(GENSOURCES)/ grammar.hpp bison_out.txt402 $(PERL) -p -e 'END { if ($$conflict) { unlink "Grammar.cpp"; die; } } $$conflict ||= /conflict/' < bison_out.txt 403 cat $(GENSOURCES)/Grammar.hpp > $(GENSOURCES)/Grammar.h 404 rm -f $(GENSOURCES)/Grammar.hpp bison_out.txt 405 405 406 406 DerivedSources/Lexer.lut.h: $(CREATE_HASH_TABLE) $(srcdir)/JavaScriptCore/parser/Keywords.table
Note:
See TracChangeset
for help on using the changeset viewer.