Files
hush3/src/cc/makecustom
2019-06-10 20:31:24 +02:00

8 lines
127 B
Bash
Executable File

#!/bin/sh
if make -f Makefile_custom "$@"; then
echo CUSTOMCC BUILD SUCCESSFUL
else
echo CUSTOMCC BUILD FAILED
exit 1
fi