# Student Makefile for the CS:APP Architecture Lab Part C

INDIR = /afs/cs/academic/class/15349-s02/archlabc/handin
TEAM = bovik
VERSION = 1

# Use this rule to handin your solution files
handin:
	cp sim/pipe/ncopy.ys $(INDIR)/$(TEAM)-$(VERSION)-ncopy.ys
	cp sim/pipe/pipe-full.hcl $(INDIR)/$(TEAM)-$(VERSION)-pipe-full.hcl

clean:
	rm -f  *~

