SKIPPED: psi/cd_obj psi/make_gen psi/hardsup/cd_obj psi/hardsup/make_gen psi/hardsup/makefile_alpha psi/hardsup/makefile_linux psi/tecs/cd_obj psi/tecs/make_gen psi/tecs/makefile_alpha psi/tecs/makefile_linux
22 lines
515 B
Plaintext
22 lines
515 B
Plaintext
#---------------------------------------------------------------------------
|
|
# Makefile for the Matrix library
|
|
#
|
|
# Mark Koennecke, November 1996
|
|
#--------------------------------------------------------------------------
|
|
|
|
VPATH=$(SRC)
|
|
ROOT=..
|
|
|
|
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
|