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


all: $(MOLES)

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


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