]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STAT/Makefile
Fixed warnings
[u/mrichter/AliRoot.git] / STAT / Makefile
index 24d9d20e0e07e1b29ebe323e14c4da5f5e1f3618..b861359e59467857799b00c17c2f23cd0a99faa5 100644 (file)
@@ -17,14 +17,14 @@ OutPutOpt = -o
 
 CXX       = g++
 LD        = g++
-CXXFLAGS  = -O -g -pg
-LDFLAGS   = -O -g -pg
-SOFLAGS   = -shared -g -pg
+CXXFLAGS  = -O -g -pg -fPIC -Wall -Weffc++
+LDFLAGS   = -O -g -pg -fPIC -Wall -Weffc++
+SOFLAGS   = -shared -g -pg -fPIC
 
 ROOTCXX  = $(shell root-config --cflags)
 ROOTLIBS = $(shell root-config --libs) -lMinuit
 
-MCCXX    =
+MCCXX    = -I$(ALICE_ROOT)/STEER
 MCLIBS   =
 
 CXXFLAGS += $(ROOTCXX) $(MCCXX) $(LOCALCXX)
@@ -32,7 +32,7 @@ CXXFLAGS += $(ROOTCXX) $(MCCXX) $(LOCALCXX)
 # define module specific variables
 FILE_LIST =  $(shell ls -1 ./*.$(SrcSuf))
 FILES = $(basename $(FILE_LIST))
-DICTIONARIES = kdTreeDict
+DICTIONARIES = StatDict
 OBJECTS = $(addsuffix .$(ObjSuf),$(FILES))
 OBJECTS += ./$(DICTIONARIES).$(ObjSuf)
 
@@ -43,7 +43,7 @@ HEADERS = $(notdir $(HDRS))
 # define libs on which the main lib depends ! (this are defined in config/Makefile.flags)
 LIBSDEPEND = $(ROOTLIBS) $(MCLIBS)
 # define libs build by module
-LIBS = libKDTree.so
+LIBS = libSTAT.so
 
 # rule for building executables
 $(EXECS):      $(OBJECTS)