]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - DerivedSources.make
JavaScriptCore-1097.3.3.tar.gz
[apple/javascriptcore.git] / DerivedSources.make
index 4f89a6fb3d5fc3033e7856a37637c41014c8c3ac..90e099d18d5920a1024d74d0e7c629e5f8dd393c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
+# Copyright (C) 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions
 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 VPATH = \
-    $(JavaScriptCore)/kjs \
-    $(JavaScriptCore)/pcre \
+    $(JavaScriptCore) \
+    $(JavaScriptCore)/parser \
+    $(JavaScriptCore)/docs \
+    $(JavaScriptCore)/runtime \
+    $(JavaScriptCore)/interpreter \
+    $(JavaScriptCore)/jit \
 #
 
 .PHONY : all
 all : \
-    array_object.lut.h \
-    chartables.c \
-    date_object.lut.h \
-    grammar.cpp \
-    lexer.lut.h \
-    math_object.lut.h \
-    number_object.lut.h \
-    regexp_object.lut.h \
-    string_object.lut.h \
+    ArrayConstructor.lut.h \
+    ArrayPrototype.lut.h \
+    BooleanPrototype.lut.h \
+    DateConstructor.lut.h \
+    DatePrototype.lut.h \
+    ErrorPrototype.lut.h \
+    HeaderDetection.h \
+    JSONObject.lut.h \
+    JSGlobalObject.lut.h \
+    KeywordLookup.h \
+    Lexer.lut.h \
+    MathObject.lut.h \
+    NumberConstructor.lut.h \
+    NumberPrototype.lut.h \
+    ObjectConstructor.lut.h \
+    ObjectPrototype.lut.h \
+    RegExpConstructor.lut.h \
+    RegExpPrototype.lut.h \
+    RegExpJitTables.h \
+    RegExpObject.lut.h \
+    StringConstructor.lut.h \
+    StringPrototype.lut.h \
+    docs/bytecode.html \
 #
 
 # lookup tables for classes
 
 %.lut.h: create_hash_table %.cpp
        $^ -i > $@
-lexer.lut.h: create_hash_table keywords.table
+Lexer.lut.h: create_hash_table Keywords.table
        $^ > $@
 
-# JavaScript language grammar
+docs/bytecode.html: make-bytecode-docs.pl Interpreter.cpp 
+       perl $^ $@
 
-grammar.cpp: grammar.y
-       bison -d -p kjsyy $< -o $@ > bison_out.txt 2>&1
-       perl -p -e 'END { if ($$conflict) { unlink "grammar.cpp"; die; } } $$conflict ||= /conflict/' < bison_out.txt
-       touch grammar.cpp.h
-       touch grammar.hpp
-       cat grammar.cpp.h grammar.hpp > grammar.h
-       rm -f grammar.cpp.h grammar.hpp bison_out.txt
+# character tables for Yarr
 
-# character tables for PCRE
+RegExpJitTables.h: create_regex_tables
+       python $^ > $@
 
-chartables.c : dftables
-       $^ $@
+KeywordLookup.h: KeywordLookupGenerator.py Keywords.table
+       python $^ > $@
+
+# header detection
+
+ifeq ($(OS),MACOS)
+
+HeaderDetection.h : DerivedSources.make /System/Library/CoreServices/SystemVersion.plist
+       rm -f $@
+       echo "/* This is a generated file. Do not edit. */" > $@
+       if [ -f $(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders/pthread_machdep.h ]; then echo "#define HAVE_PTHREAD_MACHDEP_H 1" >> $@; else echo >> $@; fi
+
+else
+
+HeaderDetection.h :
+       echo > $@
+
+endif