SHELL=/bin/csh
INC1=.
SRC=.
MUL=.
OBJ=.
BIN=.
CFLAGS=  -I${INC1} -O3 
#
#	Main make
#	
#	Make Matrix Multiplication
#
all:	mult1
mult1:	mult1.o general.o 
	bspcc ${CFLAGS} -flibrary-level 2 -bspfifo 1000   \
		general.o  mult1.o -o ${BIN}/mult1 
#
#	Dependent object files for previous makes
#
#	Matrix Multiplication dependencies
general.o:	${MUL}/general.c
	bspcc ${CFLAGS}  -c  ${MUL}/general.c -o ${OBJ}/general.o 
mult1.o:	${MUL}/mult1.c
	bspcc ${CFLAGS}  -c  ${MUL}/mult1.c -o ${OBJ}/mult1.o 
#
#
#	Clean-up commands
#
clean:	
	rm ${OBJ}/*.o 
erase:	
	rm -i ${BIN}/mult1
