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

Last change on this file since 3477 was 3412, checked in by tbretz, 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../mhbase -I../mraw -I../manalysis \
25 -I../mgui -I../mgeom -I../mdata -I../mfilter -I../mimage \
26 -I../mmain -I../mmc -I../mreflector -I../mpointing -I../mastro
27
28#------------------------------------------------------------------------------
29
30.SUFFIXES: .c .cc .cxx .h .hxx .o
31
32SRCFILES = MHEvent.cc \
33 MHCamEvent.cc \
34 MHFadcPix.cc \
35 MHFadcCam.cc \
36 MHStarMap.cc \
37 MHEnergyTime.cc \
38 MHEnergyTheta.cc \
39 MHAlphaEnergyTime.cc \
40 MHAlphaEnergyTheta.cc \
41 MHBlindPixels.cc \
42 MHEffOnTime.cc \
43 MHTimeDiffTime.cc \
44 MHTimeDiffTheta.cc \
45 MHCompProb.cc \
46 MHHadronness.cc \
47 MHThetabarTime.cc \
48 MHThetabarTheta.cc \
49 MHGamma.cc \
50 MHFlux.cc \
51 MHSigmaPixel.cc \
52 MHSigmabarTheta.cc \
53 MHSigmaTheta.cc \
54 MHTriggerLvl0.cc \
55 MHOnSubtraction.cc \
56 MHFindSignificance.cc \
57 MHCT1Supercuts.cc \
58 MHCamera.cc \
59 MHSupercuts.cc
60# MHCurrents.cc \
61
62
63SRCS = $(SRCFILES)
64HEADERS = $(SRCFILES:.cc=.h)
65OBJS = $(SRCFILES:.cc=.o)
66
67############################################################
68
69all: $(LIB)
70
71include ../Makefile.rules
72
73#clean: rmcint rmobjs rmcore rmlib
74
75mrproper: clean rmbak
76
77# @endcode
78
79
80
81
82
83
84
85
Note: See TracBrowser for help on using the repository browser.