thelandofwildblocs/Build_Run.sh
thatscringebro 9dfd911bff Init
2023-02-16 09:26:40 -05:00

13 lines
278 B
Bash
Executable File

#!/bin/bash/
# bash script to build, make and run the program
touch Makefile.dep
make -j4 # should be good for most computers that will use the script
./TheLandOfWildBlocs
# Removes the build files after they have been used
rm Makefile.dep
rm TheLandOfWildBlocs
cd CPP
rm *.o