]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/Makefile.conf
Changes done for new aliroot version. Faster calculation through saving LUT for kappa.
[u/mrichter/AliRoot.git] / HLT / Makefile.conf
CommitLineData
01ee3a4e 1#$Id$
2###########################
3# Makefile for HLT code. #
4# #
5# Author: Anders Vestbo #
6###########################
7
8#Define whether you want to run with ALIROOT or only ROOT
9#Only one of them should be defined
10ifndef USEPACKAGE
01ee3a4e 11USEPACKAGE = ALIROOT
c1123a44 12#USEPACKAGE = ROOT
13#USEPACKAGE = STANDALONE
01ee3a4e 14endif
15
16#Specify the directory where the level3code tree is located.
17ifndef TOPDIR
18TOPDIR = $(HOME)/workcode/level3code
19endif
20ifndef LIBDIR
21LIBDIR = $(LEVEL3)/lib_$(USERNAME)
22endif
01ee3a4e 23
24#Switch on/off HLT logging classes
47b00675 25NOLOGGING = 1
01ee3a4e 26
27#Switch on/off saving MC data through the chain.
28#This will only have an effect if you are running with aliroot.
47b00675 29#DO_MC = 1
01ee3a4e 30
748e01f4 31#Switch of if you are not using patched AliTPC
32#This will only have an effect if you are running with aliroot.
33ASVVERSION = 1
34
47b00675 35CXX = g++
36LD = g++
37GCCVERSION = $(shell $(CXX) --version | head -n 1 | cut -d" " -f 3 | cut -d. -f 1)
b1f97365 38
47b00675 39CXXGCC3FLAGS = -DGCCVERSION=$(GCCVERSION)
40#CXXGCC3FLAGS += -pedantic
41#CXXGCC3FLAGS += -Wno-deprecated
42
43CXXFLAGS = -O2 -Wall -fPIC -Woverloaded-virtual $(CXXGCC3FLAGS) $(EXTRACXXFLAGS)
44LDFLAGS = -O2 $(EXTRALDFLAGS)
45SOFLAGS = -shared