Files
dragonx/src/cc/makerogue
ca333 2ca8d1eeda resolve conflict
PR for multi OS build will follow this PR
2019-02-19 14:15:09 +01:00

12 lines
155 B
Bash
Executable File

#!/bin/sh
cd rogue;
./configure
make; cd ..
if make -f Makefile_rogue "$@"; then
echo ROGUE BUILD SUCCESSFUL
else
echo ROGUE BUILD FAILED
exit 1
fi