Skip to content

Commit

Permalink
Changing Makefile to supoort ROOT install in a fixed location.
Browse files Browse the repository at this point in the history
Changing version in Makefile from v0.3 to v0.3.1.
  • Loading branch information
bintriz committed Jan 15, 2015
1 parent 5aec707 commit 9075462
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
VERSION = v0.3
VERSION = v0.3.1
override LIBS += -lz
ROOTLIBS = -L$(ROOTSYS)/lib -lCore -lCint -lRIO -lNet -lHist -lGraf -lGraf3d \
-lGpad -lTree -lRint -lMatrix -lPhysics \
-lMathCore -lThread -lGui

ifneq ($(wildcard $(ROOTSYS)/lib/root),)
ROOTLIBS = -L$(ROOTSYS)/lib/root -lCore -lCint -lRIO -lNet -lHist -lGraf -lGraf3d \
-lGpad -lTree -lRint -lMatrix -lPhysics \
-lMathCore -lThread -lGui
else
ROOTLIBS = -L$(ROOTSYS)/lib -lCore -lCint -lRIO -lNet -lHist -lGraf -lGraf3d \
-lGpad -lTree -lRint -lMatrix -lPhysics \
-lMathCore -lThread -lGui
endif

SAMDIR = samtools
SAMLIB = $(SAMDIR)/libbam.a
INC = -I$(ROOTSYS)/include -I$(SAMDIR)

ifneq ($(wildcard $(ROOTSYS)/include/root),)
INC = -I$(ROOTSYS)/include/root -I$(SAMDIR)
else
INC = -I$(ROOTSYS)/include -I$(SAMDIR)
endif

ifeq ($(OMP),no)
$(info Compiling with NO parallel support)
Expand Down

0 comments on commit 9075462

Please sign in to comment.