Program now runs once, input seems to not work, added debug in makefile for debugging

This commit is contained in:
2022-10-25 02:12:07 -05:00
parent 66794db902
commit 68e9985c18
3 changed files with 27 additions and 17 deletions
+14
View File
@@ -10,6 +10,20 @@ compile:
link:
gcc -o bin/pish.out build/*.o
exec: compile link
./bin/pish.out
debug: debugCompile debugLink
debugCompile:
gcc $(INC) -g -c -o build/main.o src/main.c
gcc $(INC) -g -c -o build/Integrated.o src/Integrated.c
gcc $(INC) -g -c -o build/Pish.o src/Pish.c
debugLink:
gcc -g -o bin/pish.out build/*.o
clean:
rm build/*.o
rm bin/*.out