sandbox/ostep/hw5/Makefile

11 lines
85 B
Makefile

TARGETS := hw5_1
all: $(TARGETS)
clean:
rm -f $(TARGETS)
%: %.c
$(CC) -o $@ $<