c-argh/Makefile

11 lines
108 B
Makefile

.PHONY: all clean
ALL=clean example
all: $(ALL)
clean:
rm -f example
example:
gcc example.c -o example