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

Last change on this file since 2272 was 2272, 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 MEnergyEstParamDanielMkn421.cc \
42 MSrcPosCam.cc \
43 MHadronness.cc \
44 MMatrixLoop.cc \
45 MCompProbCalc.cc \
46 MMultiDimDistCalc.cc \
47 MCerPhotPix.cc \
48 MCerPhotEvt.cc \
49 MCerPhotAnal.cc \
50 MCerPhotCalc.cc \
51 MPedCalcPedRun.cc \
52 MBlindPixels.cc \
53 MBlindPixelCalc.cc \
54 MSigmabar.cc \
55 MSigmabarParam.cc \
56 MSigmabarCalc.cc \
57 MCT1PadSchweizer.cc \
58 MCT1PointingCorrCalc.cc \
59 MParameters.cc \
60 MMcTriggerLvl2.cc \
61 MMcTriggerLvl2Calc.cc \
62 MCT1SupercutsCalc.cc \
63 MFiltercutsCalc.cc
64# MCT1PadONOFF.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.