sandbox/ostep/hw5/Makefile

17 lines
145 B
Makefile
Raw Normal View History

2018-09-06 01:32:57 +00:00
TARGETS := hw5_1 \
hw5_2 \
hw5_3 \
hw5_5 \
hw5_6 \
hw5_7 \
hw5_8
2018-08-30 04:04:35 +00:00
all: $(TARGETS)
clean:
rm -f $(TARGETS)
%: %.c
$(CC) -o $@ $<