SHELL   = /bin/sh
PROGS   = `ls *.c | sed 's/\.c$$//'`

CFLAGS  = -ansi -mips2 -float -prototypes -O 
LDFLAGS = -lgl -lc -s

default all:
	@${MAKE} ${PROGS}

clean clobber:
	rm -f ${PROGS} *.o