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

all:		trans

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


clean:
		rm -f *.o
