Skip to content

Commit

Permalink
fixed minor bug in Makefile that caused -lbamtools to not be found
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarzisi committed Feb 9, 2018
1 parent 85c8320 commit f6f8e1f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
BAMTOOLS_DIR := ../bamtools-2.3.0/
HTSLIB_DIR := ../htslib-1.3/
SPARSEPP_DIR := ../sparsepp/

ABS_BAMTOOLS_DIR := $(realpath $(BAMTOOLS_DIR))
ABS_HTSLIB_DIR := $(realpath $(HTSLIB_DIR))
ABS_SPARSEPP_DIR := $(realpath $(SPARSEPP_DIR))

CXX := g++
CXXFLAGS := -std=c++0x -Wno-deprecated -Wall -O3 -fexceptions -g -Wl,-rpath,$(ABS_BAMTOOLS_DIR)/lib/
#CXXFLAGS := -std=c++0x -Wno-deprecated -Wall -O3 -fexceptions -pg -Wl,-rpath,$(ABS_BAMTOOLS_DIR)/lib/ # compile for gprof
INCLUDES := -I$(ABS_BAMTOOLS_DIR)/include/ -I$(ABS_HTSLIB_DIR)/ -I$(ABS_SPARSEPP_DIR) -L$(ABS_BAMTOOLS_DIR)/lib/ -L$(ABS_HTSLIB_DIR)/ -L$(ABS_SPARSEPP_DIR)
INCLUDES := -I$(ABS_BAMTOOLS_DIR)/include/ -I$(ABS_HTSLIB_DIR)/ -L$(ABS_BAMTOOLS_DIR)/lib/ -L$(ABS_HTSLIB_DIR)/

all: lancet

Expand Down

0 comments on commit f6f8e1f

Please sign in to comment.