]>
Commit | Line | Data |
---|---|---|
0f51f5b8 | 1 | #-*- Mode: Makefile -*- |
95316e9f | 2 | # $Id$ |
3 | # package definition for the libAliHLTTRD library | |
0f51f5b8 | 4 | |
0f51f5b8 | 5 | # class header files, the link definition for the root dictionary |
6 | # will be created from the names of the header files | |
0af7cb2e | 7 | CLASS_HDRS:= \ |
0af7cb2e | 8 | AliHLTTRDClusterizerComponent.h \ |
9 | AliHLTTRDDefinitions.h \ | |
0e339ac7 | 10 | AliHLTTRDTrackerV1Component.h \ |
dc2e6604 | 11 | AliHLTTRDClusterizer.h \ |
95259bbb | 12 | AliHLTTRDEsdWriterComponent.h \ |
d679dd6c | 13 | AliHLTTRDCalibrationComponent.h \ |
14 | AliHLTTRDCluster.h \ | |
15 | AliHLTTRDTracklet.h \ | |
16 | AliHLTTRDTrack.h \ | |
dc2e6604 | 17 | AliHLTTRDAgent.h \ |
ef29c6da | 18 | AliHLTTRDUtils.h \ |
4de61263 | 19 | AliHLTTRDOfflineClusterizerComponent.h \ |
20 | AliHLTTRDOfflineTrackerV1Component.h \ | |
ef29c6da | 21 | AliHLTTRDClusterHistoComponent.h |
95316e9f | 22 | |
23 | # library sources | |
24 | MODULE_SRCS= \ | |
25 | $(CLASS_HDRS:.h=.cxx) | |
26 | ||
0f51f5b8 | 27 | # library headers |
28 | # in most cases you might have already added all the header files to | |
29 | # the CLASS_HDRS variable. So we just use the content of this. You | |
30 | # can simply add more header files which don't contain classes with | |
31 | # ROOT dictionary support | |
68d281dc | 32 | MODULE_HDRS:= \ |
33 | AliHLTTRDTrackletWordArray.h \ | |
34 | $(CLASS_HDRS) | |
0f51f5b8 | 35 | |
014e1e83 | 36 | # The LinkDef file required by the ROOT dictionary generation can be |
37 | # generated automatically. For the all header files specified in | |
38 | # CLASS_HDRS an entry will be generated | |
39 | # pragma link C++ class <class-name>+; | |
40 | # | |
41 | # If the default behavior is not enough, you can provide a custom | |
42 | # *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to | |
43 | # enable automatic generation. | |
4634c1e4 | 44 | MODULE_DHDR:= |
0f51f5b8 | 45 | |
d8731936 | 46 | EINCLUDE := HLT/BASE HLT/BASE/util HLT/TRD TRD TRD/Cal STEER RAW |
0f51f5b8 | 47 | |
abd75f15 | 48 | LIBRARY_DEP := -lHLTbase -lAliHLTUtil -lESD -lCDB -lTRDrec -lTRDbase \ |
49 | -lSTEER -lSTEERBase -lRAWDatarec | |
50 | ||
0f51f5b8 | 51 | ############################################################################### |
52 | # | |
53 | # do not change anything below this line | |
54 | # | |
abd75f15 | 55 | include $(MODDIR)/hlt.conf |
56 | ||
0af7cb2e | 57 | SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS)) |
58 | CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS)) | |
59 | HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS)) | |
014e1e83 | 60 | DHDR:=$(patsubst %,TRD/%,$(MODULE_DHDR)) |
61 | CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1) | |
72ae28cd | 62 | |
abd75f15 | 63 | EDEFINE := ${HLTDEFS} |
64 | PACKCXXFLAGS := ${HLTCXXFLAGS} | |
65 | PACKCFLAGS := ${HLTCLFAGS} | |
66 | PACKDCXXFLAGS:= ${HLTDCXXFLAGS} | |
67 | PACKSOFLAGS := $(HLTSOFLAGS) |