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

Last change on this file since 2512 was 2481, 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 = 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 MHArray.cc \
36 MWeight.cc \
37 MH3.cc \
38 MHEvent.cc \
39 MHCamEvent.cc \
40 MHPixVsTime.cc \
41 MHMatrix.cc \
42 MHFadcPix.cc \
43 MHFadcCam.cc \
44 MHStarMap.cc \
45 MHEnergyTime.cc \
46 MHEnergyTheta.cc \
47 MHAlphaEnergyTime.cc \
48 MHAlphaEnergyTheta.cc \
49 MHBlindPixels.cc \
50 MHEffOnTime.cc \
51 MHTimeDiffTime.cc \
52 MHTimeDiffTheta.cc \
53 MHCompProb.cc \
54 MHHadronness.cc \
55 MHThetabarTime.cc \
56 MHThetabarTheta.cc \
57 MHGamma.cc \
58 MHFlux.cc \
59 MHSigmaPixel.cc \
60 MHSigmabarTheta.cc \
61 MHSigmaTheta.cc \
62 MHTriggerLvl0.cc \
63 MHOnSubtraction.cc \
64 MHFindSignificance.cc \
65 MHCT1Supercuts.cc \
66 MHCamera.cc
67# MHCurrents.cc \
68
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
85
86
87
88
89
90
91
92
Note: See TracBrowser for help on using the repository browser.