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


all: $(MOLES)

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


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