diff --git a/Makefile b/makefile similarity index 51% rename from Makefile rename to makefile index d3f4b83..b1df881 100644 --- a/Makefile +++ b/makefile @@ -1,7 +1,9 @@ +.PHONY: debug debug: - gcc -Wall -g *.c + gcc -Wall -g ./src/*.c gdb a.out +.PHONY: run run: gcc -Wall ./src/*.c ./a.out