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

all:		net

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


clean:
		rm -f *.o
