PSI sics-cvs-psi-complete-tree-post-site-support

This commit is contained in:
2004-03-09 15:18:11 +00:00
committed by Douglas Clowes
parent 6373f6b0fb
commit ae77364de2
196 changed files with 8344 additions and 3485 deletions

View File

@@ -1,18 +1,23 @@
#---------------------------------------------------------------------------
# Makefile for the Matrix library
#-------------------------------------------------------------------------
# common part of the makefile for the Dummy specific parts of SICS
#
# Mark Koennecke, November 1996
#--------------------------------------------------------------------------
# Mark Koennecke, June 2003
#-------------------------------------------------------------------------
.SUFFIXES:
.SUFFIXES: .c .o .f
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
VPATH=$(SRC)
ROOT=..
libmatrix.a: $(OBJ)
- rm -f libmatrix.a
ar cr libmatrix.a $(OBJ)
ranlib libmatrix.a
OBJ=dummy.o
all: libdummy.a
libdummy.a: $(OBJ)
rm -f libdummy.a
ar cr libdummy.a $(OBJ)
ranlib libdummy.a
clean:
rm -f *.o
rm -f *.a
rm -f *.o