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

Last change on this file since 2578 was 2565, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 2.2 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../mhist -I../mgui -I../mimage -I../mhistmc \
26 -I../mfileio -I../mmain
27
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MPedestalPix.cc \
34 MPedestalCam.cc \
35 MMcPedestalCopy.cc \
36 MMcPedestalNSBAdd.cc \
37 MGeomApply.cc \
38 MCurrents.cc \
39 MCameraData.cc \
40 MEnergyEst.cc \
41 MEnergyEstimate.cc \
42 MEnergyEstParam.cc \
43 MEnergyEstParamDanielMkn421.cc \
44 MSrcPosCam.cc \
45 MHadronness.cc \
46 MMatrixLoop.cc \
47 MCompProbCalc.cc \
48 MMultiDimDistCalc.cc \
49 MCerPhotPix.cc \
50 MCerPhotEvt.cc \
51 MCerPhotAnal.cc \
52 MCerPhotAnal2.cc \
53 MCerPhotCalc.cc \
54 MBlindPixels.cc \
55 MBlindPixelCalc.cc \
56 MEventRate.cc \
57 MEventRateCalc.cc \
58 MSigmabar.cc \
59 MSigmabarParam.cc \
60 MSigmabarCalc.cc \
61 MCT1PadSchweizer.cc \
62 MCT1PointingCorrCalc.cc \
63 MParameters.cc \
64 MMcTriggerLvl2.cc \
65 MMcTriggerLvl2Calc.cc \
66 MCT1Supercuts.cc \
67 MCT1SupercutsCalc.cc \
68 MCT1FindSupercuts.cc \
69 MMinuitInterface.cc \
70 MFiltercutsCalc.cc \
71 MCT1PadONOFF.cc \
72 MCalibrationCalc.cc \
73 MCalibrationPix.cc \
74 MCalibrationBlindPix.cc \
75 MCalibrationPINDiode.cc \
76 MCalibrationCam.cc
77
78SRCS = $(SRCFILES)
79HEADERS = $(SRCFILES:.cc=.h)
80OBJS = $(SRCFILES:.cc=.o)
81
82############################################################
83
84all: $(LIB)
85
86include ../Makefile.rules
87
88clean: rmcint rmobjs rmcore rmlib
89
90mrproper: clean rmbak
91
92# @endcode
Note: See TracBrowser for help on using the repository browser.