Skip to content

Commit

Permalink
Merge pull request #7 from eivindgl/master
Browse files Browse the repository at this point in the history
Fixed order of linked libraries, which matters for static builds.
  • Loading branch information
natsuhiko authored Nov 2, 2016
2 parents b7289a2 + 30b988d commit d750a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ INTELLIB=/software/intel-tools-2015/lib/intel64

CC=gcc
CFLAGS := $(CFLAGS) -std=gnu99 -I/usr/include -I/usr/include/gsl -fpic -g -O2
LDFLAGS := $(LDFLAGS) -lf2c -lblas -lgslcblas -llapack -lgsl -lm -lz -lpthread
LDFLAGS := $(LDFLAGS) -lgslcblas -lgsl -llapack -lblas -lm -lz -lpthread -lf2c

PROGRAM = rasqual
OBJS = usage.o parseVCF.o sort.o nbglm.o nbem.o util.o
Expand Down

0 comments on commit d750a36

Please sign in to comment.