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


all: $(MOLES)

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


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