mirror of
https://github.com/servo/servo.git
synced 2025-10-04 10:39:16 +01:00
16 lines
522 B
Bash
Executable file
16 lines
522 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SRCDIR="$(cd $(dirname $0) && pwd)"
|
|
sed "s#%VPATH%#${SRCDIR}#" ${SRCDIR}/Makefile.in > Makefile
|
|
|
|
mkdir -p src/mozjs
|
|
mkdir -p src/rust-mozjs
|
|
mkdir -p src/rust-sdl
|
|
mkdir -p src/rust-azure
|
|
mkdir -p src/rust-cocoa
|
|
|
|
(cd src/mozjs && sh ${SRCDIR}/src/mozjs/js/src/configure)
|
|
(cd src/rust-mozjs && sh ${SRCDIR}/src/rust-mozjs/configure)
|
|
(cd src/rust-sdl && sh ${SRCDIR}/src/rust-sdl/configure)
|
|
(cd src/rust-azure && sh ${SRCDIR}/src/rust-azure/configure)
|
|
(cd src/rust-cocoa && sh ${SRCDIR}/src/rust-cocoa/configure)
|