0f51f5b8 |
1 | #-*- Mode: Makefile -*- |
95316e9f |
2 | # $Id$ |
3 | # package definition for the libAliHLTTRD library |
0f51f5b8 |
4 | |
5 | include $(MODDIR)/hlt.conf |
6 | |
0f51f5b8 |
7 | # class header files, the link definition for the root dictionary |
8 | # will be created from the names of the header files |
0af7cb2e |
9 | CLASS_HDRS:= \ |
0af7cb2e |
10 | AliHLTTRDClusterizerComponent.h \ |
11 | AliHLTTRDDefinitions.h \ |
12 | AliHLTTRDTrackerComponent.h \ |
051a0e2d |
13 | AliTRDclusterizerHLT.h \ |
95259bbb |
14 | AliHLTTRDEsdWriterComponent.h \ |
15 | AliHLTTRDCalibrationComponent.h |
95316e9f |
16 | |
17 | # library sources |
18 | MODULE_SRCS= \ |
19 | $(CLASS_HDRS:.h=.cxx) |
20 | |
0f51f5b8 |
21 | # library headers |
22 | # in most cases you might have already added all the header files to |
23 | # the CLASS_HDRS variable. So we just use the content of this. You |
24 | # can simply add more header files which don't contain classes with |
25 | # ROOT dictionary support |
26 | MODULE_HDRS:= $(CLASS_HDRS) |
27 | |
014e1e83 |
28 | # The LinkDef file required by the ROOT dictionary generation can be |
29 | # generated automatically. For the all header files specified in |
30 | # CLASS_HDRS an entry will be generated |
31 | # pragma link C++ class <class-name>+; |
32 | # |
33 | # If the default behavior is not enough, you can provide a custom |
34 | # *LinkDef.h to the MODULE_DHDR variable. Leave MODULE_DHDR empty to |
35 | # enable automatic generation. |
4634c1e4 |
36 | MODULE_DHDR:= |
0f51f5b8 |
37 | |
38 | # extra defines and flags for the AliRoot build system. NOTE: include |
39 | # directories and linking flags/options must be specified in |
40 | # Makefile.am (stand-alone build system) and here (AliRoot). |
41 | EDEFINE := ${HLTDEFS} |
42 | PACKCXXFLAGS := ${HLTCXXFLAGS} |
43 | PACKCFLAGS := ${HLTCLFAGS} |
44 | PACKDCXXFLAGS:= ${HLTDCXXFLAGS} |
45 | |
95316e9f |
46 | EINCLUDE := HLT/BASE HLT/BASE/util HLT/TRD TRD STEER RAW |
0f51f5b8 |
47 | |
48 | ############################################################################### |
49 | # |
50 | # do not change anything below this line |
51 | # |
0af7cb2e |
52 | SRCS:=$(patsubst %,TRD/%,$(MODULE_SRCS)) |
53 | CINTHDRS:=$(patsubst %,TRD/%,$(CLASS_HDRS)) |
54 | HDRS:=$(patsubst %,TRD/%,$(MODULE_HDRS)) |
014e1e83 |
55 | DHDR:=$(patsubst %,TRD/%,$(MODULE_DHDR)) |
56 | CINTAUTOLINK:= $(shell test "x$(MODULE_DHDR)" = "x" && echo 1) |