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

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