1 | ##################################################################
|
---|
2 | #
|
---|
3 | # makefile
|
---|
4 | #
|
---|
5 | # for the MARS software
|
---|
6 | #
|
---|
7 | ##################################################################
|
---|
8 | include ../Makefile.conf.$(OSTYPE)
|
---|
9 | include ../Makefile.conf.general
|
---|
10 |
|
---|
11 | #
|
---|
12 | # Handling name of the Root Dictionary Files
|
---|
13 | #
|
---|
14 | CINT = Calib
|
---|
15 |
|
---|
16 | #
|
---|
17 | # Library name to creatre
|
---|
18 | #
|
---|
19 | LIB = mcalib.a
|
---|
20 |
|
---|
21 | #
|
---|
22 | # connect the include files defined in the config.mk file
|
---|
23 | #
|
---|
24 | INCLUDES = -I. -I../mbase -I../mhbase -I../mgui -I../mgeom -I../manalysis \
|
---|
25 | -I../mraw -I../mtools -I../mmc -I../mimage
|
---|
26 |
|
---|
27 | # mhbase: MBinning MH
|
---|
28 | # mgui: MCamEvent (McalibrationCam)
|
---|
29 | # mgeom: MGeomCam (McalibrationCam - necessary?)
|
---|
30 | # manalysis: MExtractedSignal, MCerPhotEvt (move to mcalib?)
|
---|
31 | # mraw: MRawRunHeader, MRawEvtHeader, MRawEvtPixelIter (3xMCalibrationCalc)
|
---|
32 | # mmc: MMcFadcHeader, MMcEvt
|
---|
33 | # mimage MHillas
|
---|
34 |
|
---|
35 | #------------------------------------------------------------------------------
|
---|
36 |
|
---|
37 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
38 |
|
---|
39 | SRCFILES = MCalibrate.cc \
|
---|
40 | MCalibrateData.cc \
|
---|
41 | MCalibrationCalc.cc \
|
---|
42 | MCalibrationPix.cc \
|
---|
43 | MCalibrationBlindPix.cc \
|
---|
44 | MCalibrationPINDiode.cc \
|
---|
45 | MCalibrationCam.cc \
|
---|
46 | MHCalibrationBlindPixel.cc \
|
---|
47 | MHCalibrationPINDiode.cc \
|
---|
48 | MHCalibrationPixel.cc \
|
---|
49 | MHCalibrationChargePix.cc \
|
---|
50 | MHCalibrationChargePINDiode.cc \
|
---|
51 | MHCalibrationRelTimeCam.cc \
|
---|
52 | MHCalibrationRelTimePix.cc \
|
---|
53 | MMcCalibrationCalc.cc \
|
---|
54 | MExtractPINDiode.cc \
|
---|
55 | MExtractedSignalPINDiode.cc \
|
---|
56 | MExtractBlindPixel.cc \
|
---|
57 | MExtractedSignalBlindPixel.cc \
|
---|
58 | MHGausEvents.cc
|
---|
59 |
|
---|
60 | SRCS = $(SRCFILES)
|
---|
61 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
62 | OBJS = $(SRCFILES:.cc=.o)
|
---|
63 |
|
---|
64 | ############################################################
|
---|
65 |
|
---|
66 | all: $(LIB)
|
---|
67 |
|
---|
68 | include ../Makefile.rules
|
---|
69 |
|
---|
70 | #clean: rmcint rmobjs rmcore rmlib
|
---|
71 |
|
---|
72 | mrproper: clean rmbak
|
---|
73 |
|
---|
74 | # @endcode
|
---|