Changeset 953 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Apr 3, 2002, 10:40:57 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/Makefile.am
r901 r953 10 10 $(YACC) $(YACCFLAGS) $< 11 11 cp -f grammar.cpp.h grammar.h 12 touch ./grammar-stamp12 touch $@ 13 13 14 14 LUT_FILES = math_object.lut.h lexer.lut.h array_object.lut.h date_object.lut.h string_object.lut.h number_object.lut.h 15 15 16 16 lexer.lut.h: keywords.table 17 ./create_hash_table keywords.table -i > lexer.lut.h;17 $(srcdir)/create_hash_table $< -i > $@ 18 18 19 19 array_object.lut.h: array_object.cpp 20 ./create_hash_table array_object.cpp -i > array_object.lut.h20 $(srcdir)/create_hash_table $< -i > $@ 21 21 22 22 math_object.lut.h: math_object.cpp 23 ./create_hash_table math_object.cpp -i > math_object.lut.h23 $(srcdir)/create_hash_table $< -i > $@ 24 24 25 25 date_object.lut.h: date_object.cpp 26 ./create_hash_table date_object.cpp -i > date_object.lut.h26 $(srcdir)/create_hash_table $< -i > $@ 27 27 28 28 number_object.lut.h: number_object.cpp 29 ./create_hash_table number_object.cpp -i > number_object.lut.h29 $(srcdir)/create_hash_table $< -i > $@ 30 30 31 31 string_object.lut.h: string_object.cpp 32 ./create_hash_table string_object.cpp -i > string_object.lut.h32 $(srcdir)/create_hash_table $< -i > $@ 33 33 34 34 BUILT_SOURCES = $(GRAMMAR_FILES) $(LUT_FILES) grammar-stamp 35 35 36 36 noinst_DATA = $(BUILT_SOURCES) 37 38
Note:
See TracChangeset
for help on using the changeset viewer.