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

Last change on this file since 1965 was 1965, checked in by tbretz, 23 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 -I../mmc \
25 -I../mgui -I../mgeom -I../mdata -I../mfilter -I../mimage \
26 -I../mmain
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 MH3.cc \
37 MHCerPhotEvt.cc \
38 MHMatrix.cc \
39 MHFadcPix.cc \
40 MHFadcCam.cc \
41 MHStarMap.cc \
42 MHEnergyTime.cc \
43 MHEnergyTheta.cc \
44 MHMcCollectionArea.cc \
45 MHAlphaEnergyTime.cc \
46 MHAlphaEnergyTheta.cc \
47 MHEffOnTime.cc \
48 MHTimeDiffTime.cc \
49 MHTimeDiffTheta.cc \
50 MHCompProb.cc \
51 MHHadronness.cc \
52 MHRanForest.cc \
53 MHRanForestGini.cc \
54 MHMcEnergy.cc \
55 MHMcEfficiency.cc \
56 MHMcEfficiencyImpact.cc \
57 MHMcEfficiencyEnergy.cc \
58 MHMcEnergyImpact.cc \
59 MHMcRate.cc \
60 MHMcIntRate.cc \
61 MHMcDifRate.cc \
62 MHThetabarTime.cc \
63 MHThetabarTheta.cc \
64 MHMcEnergyMigration.cc \
65 MHGamma.cc \
66 MHFlux.cc \
67 MHSigmaPixel.cc \
68 MHSigmabarTheta.cc \
69 MHSigmaTheta.cc \
70 MHMcCT1CollectionArea.cc \
71 MHMcTriggerLvl2.cc
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.