mirror of
https://github.com/emily33901/oxide2.git
synced 2025-08-03 08:56:03 -04:00
13 lines
131 B
Bash
13 lines
131 B
Bash
#!/bin/sh
|
|
# set cwd to script directory
|
|
cd "${0%/*}"
|
|
|
|
./create_projects.sh
|
|
|
|
echo building...
|
|
cd premake/
|
|
make -j4
|
|
|
|
echo done.
|
|
exit
|