CFLAGS = -g -O -finline-functions
MOLES = tofu squeegie
LIBDIR = ../PVLIB
LDFLAGS =   -lpvoc 

all: $(MOLES)

clean:
	-rm -f $(MOLES) *.o


tofu:	tofu.o
		cc -o tofu $(CFLAGS) tofu.o -L${LIBDIR} $(LDFLAGS)
squeegie:	squeegie.o
		cc -o squeegie $(CFLAGS) squeegie.o -L${LIBDIR} $(LDFLAGS)
