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

Last change on this file since 1967 was 1967, checked in by tbretz, 22 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 MHBlindPixels.cc \
48 MHEffOnTime.cc \
49 MHTimeDiffTime.cc \
50 MHTimeDiffTheta.cc \
51 MHCompProb.cc \
52 MHHadronness.cc \
53 MHRanForest.cc \
54 MHRanForestGini.cc \
55 MHMcEnergy.cc \
56 MHMcEfficiency.cc \
57 MHMcEfficiencyImpact.cc \
58 MHMcEfficiencyEnergy.cc \
59 MHMcEnergyImpact.cc \
60 MHMcRate.cc \
61 MHMcIntRate.cc \
62 MHMcDifRate.cc \
63 MHThetabarTime.cc \
64 MHThetabarTheta.cc \
65 MHMcEnergyMigration.cc \
66 MHGamma.cc \
67 MHFlux.cc \
68 MHSigmaPixel.cc \
69 MHSigmabarTheta.cc \
70 MHSigmaTheta.cc \
71 MHMcCT1CollectionArea.cc \
72 MHMcTriggerLvl2.cc
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.