8 lines
83 B
Makefile
8 lines
83 B
Makefile
.PHONY := run
|
|
|
|
run: main
|
|
./main
|
|
|
|
main: main.c Makefile
|
|
gcc -o main main.c -O3 -g
|