Skip to content
Snippets Groups Projects
Commit 57ce8d4e authored by arq5x's avatar arq5x
Browse files

allow command line includes for make

parent 17ec9aa9
No related branches found
No related tags found
No related merge requests found
...@@ -19,12 +19,11 @@ export CXX = g++ ...@@ -19,12 +19,11 @@ export CXX = g++
#ifeq ($(DEBUG),1) #ifeq ($(DEBUG),1)
#export CXXFLAGS = -Wall -O0 -g -fno-inline -fkeep-inline-functions -D_FILE_OFFSET_BITS=64 -fPIC -DDEBUG -D_DEBUG #export CXXFLAGS = -Wall -O0 -g -fno-inline -fkeep-inline-functions -D_FILE_OFFSET_BITS=64 -fPIC -DDEBUG -D_DEBUG
#else #else
export CXXFLAGS = -Wall -O2 -D_FILE_OFFSET_BITS=64 -fPIC export CXXFLAGS = -Wall -O2 -D_FILE_OFFSET_BITS=64 -fPIC $(INCLUDE)
#endif #endif
export LIBS = -lz export LIBS = -lz
export BT_ROOT = src/utils/BamTools/ export BT_ROOT = src/utils/BamTools/
SUBDIRS = $(SRC_DIR)/annotateBed \ SUBDIRS = $(SRC_DIR)/annotateBed \
$(SRC_DIR)/bamToBed \ $(SRC_DIR)/bamToBed \
$(SRC_DIR)/bamToFastq \ $(SRC_DIR)/bamToFastq \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment