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

Last change on this file since 2147 was 2147, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 1.7 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
27#------------------------------------------------------------------------------
28
29.SUFFIXES: .c .cc .cxx .h .hxx .o
30
31SRCFILES = MPedestalPix.cc \
32 MPedestalCam.cc \
33 MMcPedestalCopy.cc \
34 MMcPedestalNSBAdd.cc \
35 MCurrents.cc \
36 MEnergyEst.cc \
37 MEnergyEstimate.cc \
38 MEnergyEstParam.cc \
39 MSrcPosCam.cc \
40 MHadronness.cc \
41 MMatrixLoop.cc \
42 MCompProbCalc.cc \
43 MMultiDimDistCalc.cc \
44 MCerPhotPix.cc \
45 MCerPhotEvt.cc \
46 MCerPhotAnal.cc \
47 MCerPhotCalc.cc \
48 MPedCalcPedRun.cc \
49 MBlindPixels.cc \
50 MBlindPixelCalc.cc \
51 MSigmabar.cc \
52 MSigmabarParam.cc \
53 MSigmabarCalc.cc \
54 MPadding.cc \
55 MPadSchweizer.cc \
56 MCT1PointingCorrCalc.cc \
57 MParameters.cc \
58 MMcTriggerLvl2.cc \
59 MMcTriggerLvl2Calc.cc \
60 MCT1SupercutsCalc.cc \
61 MFiltercutsCalc.cc
62
63SRCS = $(SRCFILES)
64HEADERS = $(SRCFILES:.cc=.h)
65OBJS = $(SRCFILES:.cc=.o)
66
67############################################################
68
69all: $(LIB)
70
71include ../Makefile.rules
72
73clean: rmcint rmobjs rmcore rmlib
74
75mrproper: clean rmbak
76
77# @endcode
Note: See TracBrowser for help on using the repository browser.