mirror of
https://github.com/collabora/libsurvive.git
synced 2026-08-04 00:51:21 -04:00
15 lines
293 B
Makefile
15 lines
293 B
Makefile
all : lightlengthparams
|
|
|
|
SRT:=../..
|
|
|
|
LIBSURVIVE:=$(SRT)/lib/libsurvive.so
|
|
|
|
CFLAGS:=-I$(SRT)/redist -I$(SRT)/include -O0 -g
|
|
LDFLAGS:=-lm -lpthread -llapacke -lcblas
|
|
|
|
lightlengthparams : lightlengthparams.c $(LIBSURVIVE)
|
|
gcc $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
|
|
|
clean :
|
|
rm -rf lightlengthparams
|
|
|