8 lines
76 B
Makefile
8 lines
76 B
Makefile
example: main.c
|
|
cc main.c -o example
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f example
|