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

Last change on this file since 2124 was 2124, checked in by tbretz, 21 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 MEnergyEst.cc \
36 MEnergyEstimate.cc \
37 MEnergyEstParam.cc \
38 MSrcPosCam.cc \
39 MHadronness.cc \
40 MMatrixLoop.cc \
41 MCompProbCalc.cc \
42 MMultiDimDistCalc.cc \
43 MCerPhotPix.cc \
44 MCerPhotEvt.cc \
45 MCerPhotAnal.cc \
46 MCerPhotCalc.cc \
47 MPedCalcPedRun.cc \
48 MBlindPixels.cc \
49 MBlindPixelCalc.cc \
50 MSigmabar.cc \
51 MSigmabarParam.cc \
52 MSigmabarCalc.cc \
53 MPadding.cc \
54 MPadSchweizer.cc \
55 MCT1PointingCorrCalc.cc \
56 MParameters.cc \
57 MMcTriggerLvl2.cc \
58 MMcTriggerLvl2Calc.cc \
59 MCT1SupercutsCalc.cc \
60 MFiltercutsCalc.cc
61
62SRCS = $(SRCFILES)
63HEADERS = $(SRCFILES:.cc=.h)
64OBJS = $(SRCFILES:.cc=.o)
65
66############################################################
67
68all: $(LIB)
69
70include ../Makefile.rules
71
72clean: rmcint rmobjs rmcore rmlib
73
74mrproper: clean rmbak
75
76# @endcode
Note: See TracBrowser for help on using the repository browser.