
CFLAGS = -I${MAV_HOME}/incl
LIBS= -L${MAV_HOME}/lib -lmaverik

all:		overview

overview:	overview.o
		${CC} overview.o -o overview ${LIBS} -lm


clean:
		rm -f *.o
