ARCH=sgi
OS=IRIX

CFLAGS=	$(FLOAT) -g -D$(ARCH) -D$(OS)
LXTLIB=	../liblxt_$(ARCH).a
LIBS=	$(LXTLIB) -lX11 -lm -lbsd

PWOBJS=	peewee.o

demo:	peewee

peewee:	$(PWOBJS) lxt
	cc -o peewee $(CFLAGS) $(PWOBJS) $(LIBS)

lxt:	$(LXTLIB)

$(LXTLIB): FRC
	@ cd ..; make -f Makefile_MC lxt

FRC:

