source: trunk/MagicSoft/Mars/mhist/Makefile@ 2734

Last change on this file since 2734 was 2734, checked in by tbretz, 21 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 = Hist
15
16#
17# Library name to creatre
18#
19LIB = mhist.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../mraw -I../manalysis \
25 -I../mgui -I../mgeom -I../mdata -I../mfilter -I../mimage \
26 -I../mmain -I../mmc -I../mreflector
27
28#------------------------------------------------------------------------------
29
30.SUFFIXES: .c .cc .cxx .h .hxx .o
31
32SRCFILES = MFillH.cc \
33 MBinning.cc \
34 MH.cc \
35 MHVsTime.cc \
36 MHArray.cc \
37 MWeight.cc \
38 MH3.cc \
39 MHEvent.cc \
40 MHCamEvent.cc \
41 MHPixVsTime.cc \
42 MHMatrix.cc \
43 MHFadcPix.cc \
44 MHFadcCam.cc \
45 MHStarMap.cc \
46 MHEnergyTime.cc \
47 MHEnergyTheta.cc \
48 MHAlphaEnergyTime.cc \
49 MHAlphaEnergyTheta.cc \
50 MHBlindPixels.cc \
51 MHEffOnTime.cc \
52 MHTimeDiffTime.cc \
53 MHTimeDiffTheta.cc \
54 MHCompProb.cc \
55 MHHadronness.cc \
56 MHThetabarTime.cc \
57 MHThetabarTheta.cc \
58 MHGamma.cc \
59 MHFlux.cc \
60 MHSigmaPixel.cc \
61 MHSigmabarTheta.cc \
62 MHSigmaTheta.cc \
63 MHTriggerLvl0.cc \
64 MHOnSubtraction.cc \
65 MHFindSignificance.cc \
66 MHCT1Supercuts.cc \
67 MHCamera.cc \
68 MHSupercuts.cc \
69 MHSimulatedAnnealing.cc
70# MHCurrents.cc \
71
72
73SRCS = $(SRCFILES)
74HEADERS = $(SRCFILES:.cc=.h)
75OBJS = $(SRCFILES:.cc=.o)
76
77############################################################
78
79all: $(LIB)
80
81include ../Makefile.rules
82
83clean: rmcint rmobjs rmcore rmlib
84
85mrproper: clean rmbak
86
87# @endcode
88
89
90
91
92
93
94
95
Note: See TracBrowser for help on using the repository browser.