SKIPPED: psi/make_gen psi/makefile psi/makefile_alpha psi/makefile_linux psi/hardsup/make_gen psi/hardsup/makefile psi/hardsup/makefile_alpha psi/hardsup/makefile_linux psi/tecs/make_gen psi/tecs/makefile psi/tecs/makefile_linux
21 lines
507 B
Plaintext
21 lines
507 B
Plaintext
#---------------------------------------------------------------------------
|
|
# Makefile for the Matrix library
|
|
#
|
|
# Mark Koennecke, November 1996
|
|
#--------------------------------------------------------------------------
|
|
|
|
VPATH=$(SRC)
|
|
|
|
OBJ= matadd.o matcreat.o matdet.o matdump.o matdurbn.o materr.o \
|
|
matinv.o matmul.o matsolve.o matsub.o matsubx.o mattoepz.o \
|
|
mattran.o
|
|
|
|
libmatrix.a: $(OBJ)
|
|
- rm -f libmatrix.a
|
|
ar cr libmatrix.a $(OBJ)
|
|
ranlib libmatrix.a
|
|
|
|
clean:
|
|
rm -f *.o
|
|
rm -f *.a
|