source: trunk/MagicSoft/Mars/manalysis/Makefile@ 3831

Last change on this file since 3831 was 3806, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 2.4 KB
Line 
1##################################################################
2#
3# makefile
4#
5# for the MARS software
6#
7##################################################################
8include ../Makefile.conf.$(OSTYPE)
9include ../Makefile.conf.general
10
11#
12# Handling name of the Root Dictionary Files
13#
14CINT = Analysis
15
16#
17# Library name to creatre
18#
19LIB = manalysis.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../mmc -I../mraw -I../mgeom -I../mfilter \
25 -I../mdata -I../mhbase -I../mhist -I../mgui -I../mimage \
26 -I../mhistmc -I../mfileio -I../mmain -I../mcalib \
27 -I../msignal -I../mpointing -I../mtools -I../mfbase \
28 -I../mbadpixels -I../mastro -I../mpedestal
29# mcalib: MGeomApply (MCalibrationCam)
30
31#------------------------------------------------------------------------------
32
33.SUFFIXES: .c .cc .cxx .h .hxx .o
34
35SRCFILES = MHPedestalPix.cc \
36 MHPedestalCam.cc \
37 MGeomApply.cc \
38 MCameraData.cc \
39 MEnergyEst.cc \
40 MEnergyEstimate.cc \
41 MEnergyEstParam.cc \
42 MEnergyEstParamDanielMkn421.cc \
43 MHadronness.cc \
44 MMatrixLoop.cc \
45 MCompProbCalc.cc \
46 MMultiDimDistCalc.cc \
47 MCerPhotPix.cc \
48 MCerPhotEvt.cc \
49 MCerPhotAnal.cc \
50 MCerPhotAnal2.cc \
51 MCerPhotCalc.cc \
52 MBlindPixels.cc \
53 MBlindPixelCalc.cc \
54 MBlindPixelsCalc2.cc \
55 MEventRate.cc \
56 MEventRateCalc.cc \
57 MSigmabar.cc \
58 MSigmabarParam.cc \
59 MSigmabarCalc.cc \
60 MCT1PadSchweizer.cc \
61 MCT1PointingCorrCalc.cc \
62 MParameters.cc \
63 MMcTriggerLvl2.cc \
64 MMcTriggerLvl2Calc.cc \
65 MCT1Supercuts.cc \
66 MCT1SupercutsCalc.cc \
67 MCT1FindSupercuts.cc \
68 MSupercuts.cc \
69 MSupercutsCalc.cc \
70 MFindSupercuts.cc \
71 MMinuitInterface.cc \
72 MFiltercutsCalc.cc \
73 MCT1PadONOFF.cc \
74 MPad.cc \
75 MPedestalWorkaround.cc \
76 MSourcePosfromStarPos.cc \
77 MMcCalibrationUpdate.cc
78
79SRCS = $(SRCFILES)
80HEADERS = $(SRCFILES:.cc=.h)
81OBJS = $(SRCFILES:.cc=.o)
82
83############################################################
84
85all: $(LIB)
86
87include ../Makefile.rules
88
89clean: rmcint rmobjs rmcore rmlib
90
91mrproper: clean rmbak
92
93# @endcode
Note: See TracBrowser for help on using the repository browser.