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

Last change on this file since 1752 was 1750, checked in by moralejo, 22 years ago
*** empty log message ***
File size: 1.7 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 MHillas.cc \
46 MHillasSrc.cc \
47 MHillasExt.cc \
48 MHillasCalc.cc \
49 MHillasSrcCalc.cc \
50 MCerPhotPix.cc \
51 MCerPhotEvt.cc \
52 MCerPhotAnal.cc \
53 MCerPhotCalc.cc \
54 MPedCalcPedRun.cc \
55 MBlindPixels.cc \
56 MBlindPixelCalc.cc \
57 MSigmabar.cc \
58 MSigmabarParam.cc \
59 MSigmabarCalc.cc \
60 MPadding.cc \
61 MTrigLvl2.cc \
62 MTrigLvl2FillTask.cc
63
64SRCS = $(SRCFILES)
65HEADERS = $(SRCFILES:.cc=.h)
66OBJS = $(SRCFILES:.cc=.o)
67
68############################################################
69
70all: $(LIB)
71
72include ../Makefile.rules
73
74clean: rmcint rmobjs rmcore rmlib
75
76mrproper: clean rmbak
77
78# @endcode
Note: See TracBrowser for help on using the repository browser.