Import existing OSILAP source code

This commit is contained in:
大窪 貴洋
2026-06-30 08:59:47 +09:00
commit 91f87cafa0
12 changed files with 2400 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
CC = i686-w64-mingw32-gcc
FC = i686-w64-mingw32-gfortran
CFLAGS = -O2 -Wall
LIBS = libopenblas-win32.a -lpthread -static-libgcc -Wl,-Bstatic -lgfortran -lquadmath -Wl,-Bdynamic -lm
LDFLAGS =
OBJS = ilt.o nnls.o command.o output.o input.o BRDnewton_modify.o alpha_loop.o
PROGRAM = osilap
all: $(PROGRAM)
$(PROGRAM): $(OBJS)
$(FC) $(OBJS) $(LDFLAGS) $(LIBS) -o $(PROGRAM)
clean:
rm -f *.o *~ $(PROGRAM)
install: $(PROGRAM)
install -s $(PROGRAM) $(DEST)