#/*************************************************************************
#**	Project : CIS 629 project #1 Cache Memories.			**
#**	Author 	: Sameer Shende (950-11-9258)				**
#**	Location: /home/grads/sameer/cis415/p1				**
#**	File	: Makefile						**
#**	Description : Used by make to create t1.			**
#**									**
#*************************************************************************/
CC=gcc
CFLAGS=-g 
#CFLAGS=-g -DDEBUG

t1 : t1.o 
	$(CC) -o $@  t1.o
