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

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:

