# Makefile for CS 12 assignment 3, Fall 2008
# cmc, 10/28/08

testlist: testlist.o basiclist.o
	gcc -Wall -o testlist testlist.o basiclist.o

testlist.o: testlist.c
	gcc -Wall -c testlist.c

basiclist.o: basiclist.c
	gcc -Wall -c basiclist.c

clean: # not required
	rm testlist.o basiclist.o
