# luke's happy autolpc makefile 

CFLAGS = -O2 -mips2 
XFLAGS = -lXm -lXt -lX11 -lPW -lXpm
AFLAGS = -laudiofile

all: autolpc

autolpc: autolpc.c
	./buildheader > autolpc.h
	cc -o autolpc autolpc.c ${XFLAGS} ${AFLAGS} ${CFLAGS}

clean:
	rm -f autolpc *.o





