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

Last change on this file since 2419 was 2377, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.9 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 -I../mmain
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 MGeomApply.cc \
38 MCurrents.cc \
39 MEnergyEst.cc \
40 MEnergyEstimate.cc \
41 MEnergyEstParam.cc \
42 MEnergyEstParamDanielMkn421.cc \
43 MSrcPosCam.cc \
44 MHadronness.cc \
45 MMatrixLoop.cc \
46 MCompProbCalc.cc \
47 MMultiDimDistCalc.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 MCT1PadSchweizer.cc \
59 MCT1PointingCorrCalc.cc \
60 MParameters.cc \
61 MMcTriggerLvl2.cc \
62 MMcTriggerLvl2Calc.cc \
63 MCT1Supercuts.cc \
64 MCT1SupercutsCalc.cc \
65 MCT1FindSupercuts.cc \
66 MMinuitInterface.cc \
67 MFiltercutsCalc.cc
68# MCT1PadONOFF.cc \
69
70SRCS = $(SRCFILES)
71HEADERS = $(SRCFILES:.cc=.h)
72OBJS = $(SRCFILES:.cc=.o)
73
74############################################################
75
76all: $(LIB)
77
78include ../Makefile.rules
79
80clean: rmcint rmobjs rmcore rmlib
81
82mrproper: clean rmbak
83
84# @endcode
Note: See TracBrowser for help on using the repository browser.