
CFLAGS = -I${MAV_HOME}/incl
LIBS= -L${MAV_HOME}/lib -lmaverik -lgdi32 -luser32 -lglu32 -lopengl32 -lpng -lm

all:		overview

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


clean:
		rm -f *.o
