source: trunk/MagicSoft/Mars/mbadpixels/Makefile@ 3806

Last change on this file since 3806 was 3806, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.3 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 = BadPixels
15
16#
17# Library name to creatre
18#
19LIB = mbadpixels.a
20
21#
22# connect the include files defined in the config.mk file
23#
24INCLUDES = -I. -I../mbase -I../manalysis -I../mgeom -I../mgui \
25 -I../mmc -I../mpedestal
26# MBadPixelsCalc (manalysis): MPedPhotCam, MSigmabar
27# MBadPixelsCalc (mgeom): MGeomCam
28# MBadPixelsCam (mgui): MCamEvent
29# MMcBadPixelsSet (mmc): MMcRunHeader
30# MBadPixelsTreat (mpedestal): MPedPhot*
31
32
33#------------------------------------------------------------------------------
34
35.SUFFIXES: .c .cc .cxx .h .hxx .o
36
37SRCFILES = MBadPixelsPix.cc \
38 MBadPixelsCam.cc \
39 MBadPixelsMerge.cc \
40 MBadPixelsCalc.cc \
41 MBadPixelsTreat.cc \
42 MMcBadPixelsSet.cc
43
44SRCS = $(SRCFILES)
45HEADERS = $(SRCFILES:.cc=.h)
46OBJS = $(SRCFILES:.cc=.o)
47
48############################################################
49
50all: $(LIB)
51
52include ../Makefile.rules
53
54clean: rmcint rmobjs rmcore rmlib
55
56mrproper: clean rmbak
57
58# @endcode
Note: See TracBrowser for help on using the repository browser.