diff options
| author | Pjotr Prins | 2018-09-29 09:34:54 +0000 |
|---|---|---|
| committer | Pjotr Prins | 2018-09-29 09:34:54 +0000 |
| commit | 05d13dc9059636d9c4c8976bc469b6d1fc65d81a (patch) | |
| tree | 53d5f61b09eb8e016170c571b7bcc01e604bbe0a /Makefile | |
| parent | fe9bceb172b11e8a29f029972a6fafc14dc41361 (diff) | |
| download | pangemma-05d13dc9059636d9c4c8976bc469b6d1fc65d81a.tar.gz | |
RELEASE NOTES for 0.98
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Makefile b/Makefile index 17bad5f..25616c7 100644 --- a/Makefile +++ b/Makefile @@ -162,25 +162,25 @@ ifdef SHOW_COMPILER_WARNINGS CPPFLAGS += -Wall endif -ifndef FORCE_STATIC - LIBS = -lgsl -lz - ifdef WITH_OPENBLAS - LIBS += -lopenblas - else - LIBS += -L$(GUIX_ENVIRONMENT) -latlas -lcblas -llapack -lblas - endif - ifdef WITH_GSLCBLAS - LIBS += -lgslcblas - else - LIBS += -lgfortran -lquadmath - endif -else - LIBS = -L$(GUIX)/lib -lopenblas -lgsl -lz -lgslcblas -lgfortran -lquadmath +ifdef FORCE_STATIC + LIBS = -L$(GUIX)/lib -lgfortran -lquadmath ifndef TRAVIS_CI # Travis static compile we cheat a little CPPFLAGS += -static endif endif +LIBS += -lgsl -lz +ifdef WITH_OPENBLAS + LIBS += -lopenblas +else + LIBS += -latlas -lcblas -llapack -lblas +endif +ifdef WITH_GSLCBLAS + LIBS += -lgslcblas +endif +ifdef FORCE_STATIC + LIBS += -lgfortran -lquadmath +endif .PHONY: all |
