9 lines
75 B
Makefile
9 lines
75 B
Makefile
build:
|
|
gcc ./main.c
|
|
|
|
run: build
|
|
./a.out
|
|
|
|
format:
|
|
clang-format ./*.c -i
|