]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/kalman/Makefile
L3 becomes HLT
[u/mrichter/AliRoot.git] / HLT / kalman / Makefile
1 #$Id$
2 ################################
3 # Makefile for HLT Hough code. #
4 #                              #
5 # Author: Anders Vestbo,       #                    
6 #         Constantin Loizides  #
7 ################################
8
9 MODNAME = AliHLTKalman
10
11 ifndef ALIHLT_TOPDIR
12 ALIHLT_TOPDIR = $(shell pwd)/..
13 endif
14
15 include $(ALIHLT_TOPDIR)/Makefile.conf
16
17 SRCS = AliHLTKalman.cxx AliHLTKalmanTrack.cxx 
18
19 ifeq ($(ALIHLT_USEPACKAGE),ROOT)
20 HDRS = $(SRCS:.cxx=.h) $(MODNAME)LinkDef.h
21 OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
22 endif
23
24 ifeq ($(ALIHLT_USEPACKAGE),ALIROOT)
25 HDRS = $(SRCS:.cxx=.h) $(MODNAME)LinkDef.h
26 OBJS = $(patsubst %.cxx,$(OBJDIR)/%.o,$(SRCS)) $(DICTO)
27 endif
28
29 include $(ALIHLT_TOPDIR)/Makefile.rules