12 lines
155 B
Bash
Executable File
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
|