Start homework 5.

This commit is contained in:
2018-08-29 21:04:35 -07:00
parent 04b031c6f2
commit 1f90323879
3 changed files with 73 additions and 0 deletions

10
ostep/hw5/Makefile Normal file
View File

@@ -0,0 +1,10 @@
TARGETS := hw5_1
all: $(TARGETS)
clean:
rm -f $(TARGETS)
%: %.c
$(CC) -o $@ $<