Home | History | Annotate | Download | only in gyp
      1 #!/bin/sh
      2 
      3 mkdir -p "${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore"
      4 cd "${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore"
      5 
      6 /bin/ln -sfh "${SRCROOT}/.." WebCore
      7 export WebCore="WebCore"
      8 
      9 if [ "${ACTION}" = "build" -o "${ACTION}" = "install" -o "${ACTION}" = "installhdrs" ]; then
     10     make -f "WebCore/DerivedSources.make" -j `/usr/sbin/sysctl -n hw.availcpu`
     11 fi
     12