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

Last change on this file since 2660 was 2556, 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 MHCalibrationPixel.cc \
69 MHCalibrationBlindPixel.cc \
70 MHCalibrationPINDiode.cc
71# MHCurrents.cc \
72
73
74SRCS = $(SRCFILES)
75HEADERS = $(SRCFILES:.cc=.h)
76OBJS = $(SRCFILES:.cc=.o)
77
78############################################################
79
80all: $(LIB)
81
82include ../Makefile.rules
83
84clean: rmcint rmobjs rmcore rmlib
85
86mrproper: clean rmbak
87
88# @endcode
89
90
91
92
93
94
95
96
Note: See TracBrowser for help on using the repository browser.