0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.4.1
/
library
/
Matrix
/
scripts
/
[
Home
]
File: CCOLAMD.patch
diff -ruN src/SuiteSparse/CCOLAMD/Makefile src/SuiteSparse-patched/CCOLAMD/Makefile --- src/SuiteSparse/CCOLAMD/Makefile 1969-12-31 19:00:00 +++ src/SuiteSparse-patched/CCOLAMD/Makefile 2024-01-12 11:54:13 @@ -0,0 +1,18 @@ +sources = Source/ccolamd.c Source/ccolamd_l.c Source/ccolamd_version.c +objects = $(sources:.c=.o) +archive = CCOLAMD.a + +PKG_CPPFLAGS = -I./Include -I../SuiteSparse_config + +all : $(archive) + +$(archive) : $(objects) + rm -f $@ + $(AR) -cr $@ $(objects) + $(RANLIB) $@ + +.c.o : + $(CC) $(PKG_CPPFLAGS) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.o + +clean : + @rm -f $(objects) $(archive)