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


all: $(MOLES)

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


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