summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptCore/make-generated-sources.sh
blob: ccfeedd6142be63d5cd4df41e290516a9bd1218a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

export SRCROOT=$PWD
export CREATE_HASH_TABLE="$SRCROOT/create_hash_table"
export CREATE_REGEXP_TABLES="$SRCROOT/create_regex_tables"
export CREATE_KEYWORD_LOOKUP="$SRCROOT/KeywordLookupGenerator.py"

mkdir -p DerivedSources/JavaScriptCore
cd DerivedSources/JavaScriptCore

make -f ../../DerivedSources.make JavaScriptCore=../.. BUILT_PRODUCTS_DIR=../..
cd ../..