Line | |
---|
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 = BadPixels
|
---|
15 |
|
---|
16 | #
|
---|
17 | # Library name to creatre
|
---|
18 | #
|
---|
19 | LIB = mbadpixels.a
|
---|
20 |
|
---|
21 | #
|
---|
22 | # connect the include files defined in the config.mk file
|
---|
23 | #
|
---|
24 | INCLUDES = -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 |
|
---|
37 | SRCFILES = MBadPixelsPix.cc \
|
---|
38 | MBadPixelsCam.cc \
|
---|
39 | MBadPixelsMerge.cc \
|
---|
40 | MBadPixelsCalc.cc \
|
---|
41 | MBadPixelsTreat.cc \
|
---|
42 | MMcBadPixelsSet.cc
|
---|
43 |
|
---|
44 | SRCS = $(SRCFILES)
|
---|
45 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
46 | OBJS = $(SRCFILES:.cc=.o)
|
---|
47 |
|
---|
48 | ############################################################
|
---|
49 |
|
---|
50 | all: $(LIB)
|
---|
51 |
|
---|
52 | include ../Makefile.rules
|
---|
53 |
|
---|
54 | clean: rmcint rmobjs rmcore rmlib
|
---|
55 |
|
---|
56 | mrproper: clean rmbak
|
---|
57 |
|
---|
58 | # @endcode
|
---|
Note:
See
TracBrowser
for help on using the repository browser.