makefiles work with lowercase m

This commit is contained in:
2023-08-15 19:50:10 +02:00
parent 0bd1efb7f8
commit 0771f0904a

9
makefile Normal file
View File

@ -0,0 +1,9 @@
.PHONY: debug
debug:
gcc -Wall -g ./src/*.c
gdb a.out
.PHONY: run
run:
gcc -Wall ./src/*.c
./a.out