summaryrefslogtreecommitdiff
path: root/make.sh
blob: da9505a476b5721cc682b46878d4342f08e1a1a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

git submodule update --init --recursive
pushd 3rd/luamake
./compile/install.sh
./compile/build.sh
popd
if [ -z "$1" ]; then
    3rd/luamake/luamake rebuild
else
    3rd/luamake/luamake rebuild --platform "$1"
fi