c-argh/Makefile

11 lines
108 B
Makefile
Raw Normal View History

2020-07-12 21:23:05 +02:00
.PHONY: all clean
ALL=clean example
all: $(ALL)
clean:
rm -f example
example:
gcc example.c -o example