Skip to content
Snippets Groups Projects
Commit 684eb636 authored by Ole Hansen's avatar Ole Hansen
Browse files

Add missing ROOTBIN variable. Important if ROOT is installed in system

locations (e.g. via rpm) instead of under a common ROOTSYS.
parent 5ef90b4b
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,7 @@ endif
ROOTCFLAGS := $(shell root-config --cflags)
ROOTLIBS := $(shell root-config --libs)
ROOTGLIBS := $(shell root-config --glibs)
ROOTBIN := $(shell root-config --bindir)
INCLUDES = $(ROOTCFLAGS) $(addprefix -I, $(INCDIRS) )
#INCLUDES = $(ROOTCFLAGS) $(addprefix -I, $(INCDIRS) ) -I$(shell pwd)
......@@ -163,7 +164,7 @@ $(HDR_COMPILEDATA) $(LIBHALLA) $(LIBDC) $(LIBSCALER): $(ANALYZER)/Makefile
$(USERDICT).cxx: $(RCHDR) $(HDR) $(LINKDEF)
@echo "Generating dictionary $(USERDICT)..."
$(ROOTSYS)/bin/rootcint -f $@ -c $(INCLUDES) $^
$(ROOTBIN)/rootcint -f $@ -c $(INCLUDES) $^
install: all
cp -p $(USERLIB) $(HOME)/cue/SRC/ana
......
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