#
# 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

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

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

run:
	./pfind . Plan

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



