13 lines
278 B
Bash
Executable File
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
|