aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: bab838671140659a929e530567382e509c60806f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CFLAGS = -std=gnu99 -D_XOPEN_SOURCE=700 -fPIC
LDFLAGS = --version-script=libbrilldata.v -shared -lgsl -lm -llapacke

TARGET = libbrilldata.so

all: $(TARGET)

$(TARGET): brill_data.o
	ld ${LDFLAGS} -o $@ $<

clean:
	-rm *.o $(TARGET)

.PHONY: clean