]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - HLT/hough/Makefile
Scaling parameter as in AliMUONConstants.cxx
[u/mrichter/AliRoot.git] / HLT / hough / Makefile
... / ...
CommitLineData
1#$Id$
2################## ##############
3# Makefile for HLT Hough code. #
4# #
5# Author: Anders Vestbo, #
6# Constantin Loizides #
7################################
8
9MODNAME = AliL3Hough
10
11ifndef ALIHLT_TOPDIR
12ALIHLT_TOPDIR = $(shell pwd)/..
13endif
14
15include $(ALIHLT_TOPDIR)/Makefile.conf
16
17SRCS = AliL3HoughTransformer.cxx AliL3HoughClusterTransformer.cxx \
18 AliL3HoughEval.cxx AliL3HoughMerger.cxx AliL3HoughBaseTransformer.cxx \
19 AliL3HoughIntMerger.cxx AliL3HoughGlobalMerger.cxx AliL3HoughTransformerVhdl.cxx \
20 AliL3Histogram.cxx AliL3Histogram1D.cxx AliL3HoughMaxFinder.cxx AliL3Hough.cxx \
21 AliL3HoughTransformerLUT.cxx AliL3HoughTransformerRow.cxx AliL3HistogramAdaptive.cxx
22
23ifneq ($(ARCH),macosx)
24## for macosx put into src as symbolic link
25SRCS += AliL3HoughTrack.cxx
26endif
27
28ifeq ($(ALIHLT_USEPACKAGE),ROOT)
29SRCS += AliL3HoughDisplay.cxx AliL3HoughTest.cxx AliL3HoughTransformerNew.cxx AliL3HoughTransformerGlobal.cxx
30HDRS = $(SRCS:.cxx=.h) $(MODNAME)LinkDef.h
31OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
32endif
33
34ifeq ($(ALIHLT_USEPACKAGE),ALIROOT)
35SRCS += AliL3HoughDisplay.cxx AliL3HoughTest.cxx AliL3HoughTransformerNew.cxx AliL3HoughTransformerGlobal.cxx
36HDRS = $(SRCS:.cxx=.h) $(MODNAME)LinkDef.h
37OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
38endif
39
40include $(ALIHLT_TOPDIR)/Makefile.rules