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

# If you want to run a debugger on these programs, remove the -s from LDFLAGS
# and change the -O in CFLAGS to -g. (now remove -g to -s)
CFLAGS	= -float -prototypes -O
LDFLAGS = -lgl_s -lc_s -g -lm

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

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