3dtoys/make_ps2.sh

10 lines
196 B
Bash
Raw Normal View History

2024-09-12 06:58:48 +00:00
#!/bin/bash
if [ "$#" -ne "1" ]; then
echo "ERROR: You must pass the program name! For instance, to build maze.elf,"
echo "pass in just 'maze'"
exit 1
fi
make -f Makefile_PS2 PROGRAM="$1"