5 lines
167 B
Bash
5 lines
167 B
Bash
|
#Compiles the entire program then runs it, producing an executable.
|
||
|
#C
|
||
|
if gcc $(find . -type f -name "*.c") -lncurses -o ${PROJECT_NAME}; then
|
||
|
./${PROJECT_NAME}
|
||
|
fi
|