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

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