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

Last change on this file since 1875 was 1875, checked in by wittek, 22 years ago
*** empty log message ***
File size: 2.0 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
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 MImgCleanStd.cc \
36 MEnergyEst.cc \
37 MEnergyEstimate.cc \
38 MEnergyEstParam.cc \
39 MSrcPosCam.cc \
40 MCameraSmooth.cc \
41 MHadronness.cc \
42 MMatrixLoop.cc \
43 MCompProbCalc.cc \
44 MMultiDimDistCalc.cc \
45 MRanTree.cc \
46 MRanForest.cc \
47 MRanForestGrow.cc \
48 MRanForestCalc.cc \
49 MRanForestFill.cc \
50 MHillas.cc \
51 MHillasSrc.cc \
52 MHillasExt.cc \
53 MHillasCalc.cc \
54 MHillasSrcCalc.cc \
55 MCerPhotPix.cc \
56 MCerPhotEvt.cc \
57 MCerPhotAnal.cc \
58 MCerPhotCalc.cc \
59 MPedCalcPedRun.cc \
60 MBlindPixels.cc \
61 MBlindPixelCalc.cc \
62 MSigmabar.cc \
63 MSigmabarParam.cc \
64 MSigmabarCalc.cc \
65 MPadding.cc \
66 MPadSchweizer.cc \
67 MSelBasic.cc \
68 MSelStandard.cc \
69 MSelFinal.cc \
70 MPointingCorr.cc \
71 MNewImagePar.cc \
72 MNewImageParCalc.cc
73
74
75SRCS = $(SRCFILES)
76HEADERS = $(SRCFILES:.cc=.h)
77OBJS = $(SRCFILES:.cc=.o)
78
79############################################################
80
81all: $(LIB)
82
83include ../Makefile.rules
84
85clean: rmcint rmobjs rmcore rmlib
86
87mrproper: clean rmbak
88
89# @endcode
Note: See TracBrowser for help on using the repository browser.