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

Last change on this file since 2381 was 2300, checked in by wittek, 21 years ago
*** empty log message ***
File size: 1.8 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 MHCamEvent.cc \
39 MHPixVsTime.cc \
40 MHMatrix.cc \
41 MHFadcPix.cc \
42 MHFadcCam.cc \
43 MHStarMap.cc \
44 MHEnergyTime.cc \
45 MHEnergyTheta.cc \
46 MHAlphaEnergyTime.cc \
47 MHAlphaEnergyTheta.cc \
48 MHBlindPixels.cc \
49 MHEffOnTime.cc \
50 MHTimeDiffTime.cc \
51 MHTimeDiffTheta.cc \
52 MHCompProb.cc \
53 MHHadronness.cc \
54 MHThetabarTime.cc \
55 MHThetabarTheta.cc \
56 MHGamma.cc \
57 MHFlux.cc \
58 MHSigmaPixel.cc \
59 MHSigmabarTheta.cc \
60 MHSigmaTheta.cc \
61 MHTriggerLvl0.cc \
62 MHOnSubtraction.cc \
63 MHFindSignificance.cc \
64 MHCT1Supercuts.cc \
65 MHCamera.cc
66# MHCurrents.cc \
67
68
69SRCS = $(SRCFILES)
70HEADERS = $(SRCFILES:.cc=.h)
71OBJS = $(SRCFILES:.cc=.o)
72
73############################################################
74
75all: $(LIB)
76
77include ../Makefile.rules
78
79clean: rmcint rmobjs rmcore rmlib
80
81mrproper: clean rmbak
82
83# @endcode
84
85
86
87
88
89
90
91
Note: See TracBrowser for help on using the repository browser.