#
# comments start with a # sign
#
# each item in the make file consists of
# three things:  a product, its ingredients and how to make it
#

CC = gcc -g -Wall

pfind: pfind.o myLib.o
	$(CC) pfind.o myLib.o -o pfind

pfind.o: pfind.c pfind.h
	$(CC) -c pfind.c
        
myLib.o: myLib.c
	$(CC) -c myLib.c

run:
	./pfind . Plan

test:
	~lib215/hw/pfind/test.pfind



