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

Last change on this file since 1947 was 1940, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.8 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 \
25 -I../mdata -I../mhist -I../mgui -I../mimage
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 MRanTree.cc \
44 MRanForest.cc \
45 MRanForestGrow.cc \
46 MRanForestCalc.cc \
47 MRanForestFill.cc \
48 MCerPhotPix.cc \
49 MCerPhotEvt.cc \
50 MCerPhotAnal.cc \
51 MCerPhotCalc.cc \
52 MPedCalcPedRun.cc \
53 MBlindPixels.cc \
54 MBlindPixelCalc.cc \
55 MSigmabar.cc \
56 MSigmabarParam.cc \
57 MSigmabarCalc.cc \
58 MPadding.cc \
59 MPadSchweizer.cc \
60 MPointingCorr.cc \
61 MParameters.cc \
62 MMcTriggerLvl2.cc \
63 MMcTriggerLvl2Calc.cc \
64 MCT1SupercutsCalc.cc
65
66SRCS = $(SRCFILES)
67HEADERS = $(SRCFILES:.cc=.h)
68OBJS = $(SRCFILES:.cc=.o)
69
70############################################################
71
72all: $(LIB)
73
74include ../Makefile.rules
75
76clean: rmcint rmobjs rmcore rmlib
77
78mrproper: clean rmbak
79
80# @endcode
Note: See TracBrowser for help on using the repository browser.