From 41f29cbf3076db51b96f240d27d432ef31b8aa71 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 14 Apr 2015 16:00:24 +0200 Subject: A major rewrite. Split the code into multiple files, drop the GSL dependency, introduce configurable logging, random cleanups. --- Makefile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index aec6c0b..0efa6c0 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,19 @@ -CFLAGS = -std=gnu99 -D_XOPEN_SOURCE=700 -fPIC -LDFLAGS = --version-script=libbrilldata.v -shared -lgsl -lm -llapacke +CFLAGS = -std=c99 -D_XOPEN_SOURCE=700 -fPIC -g +LDFLAGS = --version-script=libbrilldata.v -shared -lm -llapacke TARGET = libbrilldata.so -OBJECTS = brill_data.o +OBJECTS = basis.o \ + eval.o \ + init.o \ + log.o \ + qfunc.o \ + solve.o all: $(TARGET) $(TARGET): $(OBJECTS) - ld ${LDFLAGS} -o $@ $< + ld ${LDFLAGS} -o $@ $(OBJECTS) clean: -rm $(OBJECTS) $(TARGET) -- cgit v1.2.3