objects may now be separated from sources M.Z.

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
This commit is contained in:
cvs
2003-08-25 14:28:19 +00:00
parent acf5634ef7
commit e1839599f3
21 changed files with 181 additions and 96 deletions

View File

@ -4,6 +4,8 @@
# 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

8
matrix/makefile Normal file
View File

@ -0,0 +1,8 @@
# this makefile delegates to a version specific makefile
# where this subdirectory is (relative to the sics root)
S_DOWN=matrix
# where root is (from here)
S_UP=..
include ../make_forward

View File

@ -0,0 +1,2 @@
DUMMY=_dummy
include makefile_alpha

View File

@ -6,7 +6,7 @@
# Markus Zolliker, March 2003
#--------------------------------------------------------------------------
include ../linux_def
include ../$(SRC)linux_def
CC = gcc
CFLAGS = -g $(DFORTIFY)

View File

@ -1,15 +1,2 @@
#---------------------------------------------------------------------------
# Makefile for the Matrix library
# machine-dependent part for Redhat Linux with AFS at PSI
#
# Mark Koennecke, November 1996
# Markus Zolliker, March 2003
#--------------------------------------------------------------------------
# the following line only for fortified version
DFORTIFY=-DFORTIFY
#==========================================================================
CC = gcc
CFLAGS = -g $(DFORTIFY)
include $(SRC)make_gen
DUMMY=_dummy
include $(SRC)makefile_linux