mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
13 lines
253 B
Bash
Executable File
13 lines
253 B
Bash
Executable File
#!/bin/sh
|
|
cd $(dirname "$0")
|
|
premake4 --file=../../premake4.lua --with-mojoal gmake
|
|
|
|
cd ../../make/macosx/
|
|
sed -e "s/-Wl,-x//g" -i .make
|
|
|
|
make -j`nproc` $@
|
|
|
|
cd ../../bin/
|
|
ln -sf ../libs/macosx/libeepp.dylib .
|
|
ln -sf ../libs/macosx/libeepp-debug.dylib .
|