aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2016-08-28 10:53:54 +0200
committerAnton Khirnov <anton@khirnov.net>2016-08-28 11:14:49 +0200
commit4633e6db474e7825979bef26e68628d492a63eb1 (patch)
tree437afd67bcf813631247cc9879b8d45ffc5295de /Makefile
parent2926c4ea6f9e34b8962a08dff372252537473bda (diff)
eval: refactor evaluating the metric
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 10 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 0efa6c0..c868322 100644
--- a/Makefile
+++ b/Makefile
@@ -3,17 +3,19 @@ LDFLAGS = --version-script=libbrilldata.v -shared -lm -llapacke
TARGET = libbrilldata.so
-OBJECTS = basis.o \
- eval.o \
- init.o \
- log.o \
- qfunc.o \
- solve.o
+OBJS = basis.o \
+ eval.o \
+ eval_metric.o \
+ init.o \
+ log.o \
+ qfunc.o \
+ solve.o \
+
all: $(TARGET)
-$(TARGET): $(OBJECTS)
- ld ${LDFLAGS} -o $@ $(OBJECTS)
+$(TARGET): $(OBJS)
+ ld ${LDFLAGS} -o $@ $(OBJS)
clean:
-rm $(OBJECTS) $(TARGET)