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

all:		fonts

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


clean:
		rm -f *.o
