Changeset 901 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Mar 30, 2002, 3:01:26 AM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 11 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore
- Property svn:ignore
-
old new 1 1 Makefile.in 2 2 Makefile 3 JavaScriptCore-install-stamp 4 libJavaScriptCore.dylib 3 JavaScriptCore-stamp
-
- Property svn:ignore
-
trunk/JavaScriptCore/kjs
- Property svn:ignore
-
old new 2 2 Makefile 3 3 testkjs 4 grammar.cpp5 grammar.cpp.h6 grammar.h7 4 .deps 8 5 *-stamp 9 *.lo10 *.la11 6 .libs 12 *.lut.h13 7 kjs-test.diff 14 8 kjs-test.out
-
- Property svn:ignore
-
trunk/JavaScriptCore/kjs/.cvsignore
r866 r901 2 2 Makefile 3 3 testkjs 4 grammar.cpp5 grammar.cpp.h6 grammar.h7 4 .deps 8 5 *-stamp 9 *.lo10 *.la11 6 .libs 12 *.lut.h13 7 kjs-test.diff 14 8 kjs-test.out -
trunk/JavaScriptCore/kjs/Makefile.am
r813 r901 1 1 NULL = 2 3 noinst_LIBRARIES = libkjs.o4 libkjs_o_ldflags = -Wl,-r -nostdlib5 libkjs_o_AR = $(OBJCXXLD) $(AM_OBJCXXFLAGS) $(OBJCXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) $(libkjs_o_ldflags) -o6 7 INCLUDES = $(KWQ_INCLUDES)8 9 libkjs_o_SOURCES = \10 array_object.cpp \11 array_object.h \12 bool_object.cpp \13 bool_object.h \14 collector.cpp \15 collector.h \16 date_object.cpp \17 date_object.h \18 debugger.cpp \19 debugger.h \20 error_object.cpp \21 error_object.h \22 function.cpp \23 function.h \24 function_object.cpp \25 function_object.h \26 grammar.cpp \27 grammar.h \28 internal.cpp \29 internal.h \30 interpreter.cpp \31 interpreter.h \32 lexer.cpp \33 lexer.h \34 lexer.lut.h \35 lookup.cpp \36 lookup.h \37 math_object.cpp \38 math_object.h \39 math_object.lut.h \40 nodes.cpp \41 nodes.h \42 number_object.cpp \43 number_object.h \44 object.cpp \45 object.h \46 object_object.cpp \47 object_object.h \48 operations.cpp \49 operations.h \50 property_map.cpp \51 property_map.h \52 regexp.cpp \53 regexp.h \54 regexp_object.cpp \55 regexp_object.h \56 string_object.cpp \57 string_object.h \58 types.cpp \59 types.h \60 ustring.cpp \61 ustring.h \62 value.cpp \63 value.h \64 $(NULL)65 66 noinst_PROGRAMS = testkjs67 68 testkjs_SOURCES = testkjs.cpp69 70 testkjs_LDADD = $(srcdir)/libkjs.o71 2 72 3 YACCFLAGS = -d --output-file=grammar.cpp --file-prefix=grammar --name-prefix=kjsyy … … 78 9 grammar-stamp: grammar.y 79 10 $(YACC) $(YACCFLAGS) $< 80 ln -sf grammar.cpp.h grammar.h11 cp -f grammar.cpp.h grammar.h 81 12 touch ./grammar-stamp 82 13 … … 103 34 BUILT_SOURCES = $(GRAMMAR_FILES) $(LUT_FILES) grammar-stamp 104 35 105 CLEANFILES= $(BUILT_SOURCES)36 noinst_DATA = $(BUILT_SOURCES) 106 37 38
Note:
See TracChangeset
for help on using the changeset viewer.