D.Maden. 11-Sep-2000.

Makefiles modified to generate a Linux SICServer.
   Other files modified to get rid of irritating compiler warning messages.
This commit is contained in:
cvs
2000-09-11 09:17:43 +00:00
parent b88e4c1a7b
commit fc6c4acd79
23 changed files with 140 additions and 140 deletions

View File

@ -8,12 +8,12 @@ OBJ= matadd.o matcreat.o matdet.o matdump.o matdurbn.o materr.o \
mattran.o
#---------- for Redhat linux
#CC= gcc
#CFLAGS= -I/usr/local/include -I. -I../ -DLINUX -g -c
CC= gcc
CFLAGS= -I/usr/local/include -I. -I../ -DLINUX -g -c
#------------ for DigitalUnix
CC=cc
CFLAGS= -I/data/koenneck/include -I. -I../ -std1 -g -c
#CC=cc
#CFLAGS= -I/data/koenneck/include -I. -I../ -std1 -g -c
#------------ for DigitalUnix with Fortify
#CFLAGS= -I/data/koenneck/include -DFORTIFY -I. -I../ -std1 -g -c
@ -25,10 +25,10 @@ CFLAGS= -I/data/koenneck/include -I. -I../ -std1 -g -c
$(CC) $(CFLAGS) $*.c
matrix: $(OBJ)
- rm libmatrix.a
- rm -f libmatrix.a
ar cr libmatrix.a $(OBJ)
ranlib libmatrix.a
clean:
rm *.o
rm *.a
rm -f *.o
rm -f *.a

View File

@ -73,6 +73,3 @@ FILE *fp;
return (A);
}


View File

@ -130,4 +130,3 @@ MATRIX A, B;
mat_free( R );
return (X);
}


View File

@ -42,5 +42,3 @@ int errno;
return (NULL);
}


View File

@ -74,4 +74,3 @@ MATRIX a;
mat_free(P);
return (C);
}


View File

@ -55,6 +55,3 @@ MATRIX A;
}
return (result);
}


View File

@ -45,4 +45,4 @@ int i,j;
}
return (S);
}
}