source: trunk/MagicSoft/Mars/mcalib/Makefile@ 2765

Last change on this file since 2765 was 2736, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.4 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 = Calib
15
16#
17# Library name to creatre
18#
19LIB = mcalib.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../mhbase -I../mgui -I../mgeom -I../manalysis \
25 -I../mraw
26# mhbase: MBinning MH
27# mgui: MCamEvent (McalibrationCam)
28# mgeom: MGeomCam (McalibrationCam - necessary?)
29# manalysis: MExtractedSignal, MCerPhotEvt (move to mcalib?)
30# mraw: MRawRunHeader, MRawEvtHeader, MRawEvtPixelIter (3xMCalibrationCalc)
31
32
33#------------------------------------------------------------------------------
34
35.SUFFIXES: .c .cc .cxx .h .hxx .o
36
37SRCFILES = MCalibrate.cc \
38 MCalibrationCalc.cc \
39 MCalibrationPix.cc \
40 MCalibrationBlindPix.cc \
41 MCalibrationPINDiode.cc \
42 MCalibrationCam.cc \
43 MHCalibrationBlindPixel.cc \
44 MHCalibrationPINDiode.cc \
45 MHCalibrationPixel.cc
46
47SRCS = $(SRCFILES)
48HEADERS = $(SRCFILES:.cc=.h)
49OBJS = $(SRCFILES:.cc=.o)
50
51############################################################
52
53all: $(LIB)
54
55include ../Makefile.rules
56
57clean: rmcint rmobjs rmcore rmlib
58
59mrproper: clean rmbak
60
61# @endcode
Note: See TracBrowser for help on using the repository browser.