sandbox/ostep/hw5/Makefile

11 lines
85 B
Makefile
Raw Normal View History

2018-08-30 04:04:35 +00:00
TARGETS := hw5_1
all: $(TARGETS)
clean:
rm -f $(TARGETS)
%: %.c
$(CC) -o $@ $<