#
# makefile for Mentor
#
CFLAGS=
LDFLAGS=-L/usr/lib/X10

INCL = MenuMgr.h Mentor.h

.c.o:
	cc -c $(CFLAGS) $*.c

all:
	@ranlib -t *.a
	@make mentor

mentor.o:	mentor.c MenuMgr.h Mentor.h
	cc -c $(CFLAGS) mentor.c

mentor:	mentor.o MenuMgr.h Mentor.h $(OBJS) $(XLIB)
	@ranlib -t *.a
	cc $(LDFLAGS) -o mentor mentor.o $(OBJS) libMM.a -lX




