]>
Commit | Line | Data |
---|---|---|
5bb8775a | 1 | #-*- Mode: Makefile -*- |
e118b27e | 2 | # $Id$ |
3 | ||
890903b1 | 4 | SRCS:= AliMUON.cxx \ |
5 | AliMUONv1.cxx \ | |
890903b1 | 6 | AliMUONHit.cxx \ |
7 | AliMUONCommonGeometryBuilder.cxx \ | |
c7acf11f | 8 | AliMUONSt1GeometryBuilder.cxx \ |
9 | AliMUONSt1GeometryBuilderV2.cxx \ | |
10 | AliMUONSt1SpecialMotif.cxx \ | |
11 | AliMUONSt2GeometryBuilder.cxx \ | |
12 | AliMUONSt2GeometryBuilderV2.cxx \ | |
13 | AliMUONSlatGeometryBuilder.cxx \ | |
14 | AliMUONTriggerGeometryBuilder.cxx \ | |
15 | AliMUONResponseFactory.cxx \ | |
890903b1 | 16 | AliMUONChamber.cxx \ |
17 | AliMUONChamberTrigger.cxx \ | |
002920d1 | 18 | AliMUONResponse.cxx \ |
19 | AliMUONResponseV0.cxx \ | |
20 | AliMUONResponseTrigger.cxx \ | |
3b2353d8 | 21 | AliMUONResponseTriggerV1.cxx \ |
24c87d3c | 22 | AliMUONTrigger.cxx \ |
23 | AliMUONSDigitizerV2.cxx \ | |
7dd0a6f1 | 24 | AliMUONDigitizerV3.cxx \ |
7dd0a6f1 | 25 | AliMUONTriggerElectronics.cxx \ |
230fe657 | 26 | AliMUONVHitStore.cxx \ |
27 | AliMUONHitStoreV1.cxx \ | |
9cd48866 | 28 | AliMUONMCDataInterface.cxx \ |
29 | AliMUONPedestalEventGenerator.cxx \ | |
04236e67 | 30 | AliMUONGainEventGenerator.cxx \ |
5bb8775a | 31 | AliMUONQADataMakerSim.cxx |
04236e67 | 32 | |
344cf8e0 | 33 | HDRS:= $(SRCS:.cxx=.h) |
34 | ||
35 | DHDR:= MUONsimLinkDef.h | |
36 | ||
37 | EINCLUDE:= RAW MUON/mapping | |
38 | ||
f03c632c | 39 | ifeq ($(CCMAJORV),4) |
40 | ifeq ($(CCMINORV),3) | |
41 | PACKCXXFLAGS:= $(filter-out -O, $(CXXFLAGS)) -O0 | |
42 | endif | |
43 | endif | |
5bb8775a | 44 | |
45 | ifeq (win32gcc,$(ALICE_TARGET)) | |
46 | PACKSOFLAGS:= $(SOFLAGS) -L$(ALICE_ROOT)/lib/tgt_$(ALICE_TARGET) \ | |
47 | -lMUONbase -lMUONmapping -lMUONcalib -lMUONtrigger \ | |
48 | -lMUONgeometry -lMUONraw -lMUONcore \ | |
49 | -lSTEER -lCDB -lSTEERBase \ | |
50 | -lRAWDatasim -lRAWDatabase \ | |
51 | -L$(shell root-config --libdir) -lVMC -lEG -lGeom | |
52 | endif |