Line | |
---|
1 | ##################################################################
|
---|
2 | #
|
---|
3 | # makefile
|
---|
4 | #
|
---|
5 | # for the MARS software
|
---|
6 | #
|
---|
7 | ##################################################################
|
---|
8 | # @maintitle
|
---|
9 |
|
---|
10 | # @code
|
---|
11 |
|
---|
12 | #
|
---|
13 | # please change all system depend values in the
|
---|
14 | # config.mk.${OSTYPE} file
|
---|
15 | #
|
---|
16 | #
|
---|
17 | include ../Makefile.conf.$(OSTYPE)
|
---|
18 | include ../Makefile.conf.general
|
---|
19 |
|
---|
20 | # @endcode
|
---|
21 |
|
---|
22 | INCLUDES = -I. -I../mbase -I../mfbase -I../mraw -I../mmc -I../mdata \
|
---|
23 | -I../manalysis -I../mfileio -I../mgeom -I../mimage \
|
---|
24 | -I../mhbase -I../mmain -I../mgui -I../msignal \
|
---|
25 | -I../mpedestal
|
---|
26 |
|
---|
27 | # @code
|
---|
28 |
|
---|
29 | CINT = Filter
|
---|
30 | LIB = mfilter.a
|
---|
31 |
|
---|
32 | #------------------------------------------------------------------------------
|
---|
33 |
|
---|
34 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
35 |
|
---|
36 | SRCFILES = MFTriggerLvl1.cc \
|
---|
37 | MFTriggerLvl2.cc \
|
---|
38 | MFGeomag.cc \
|
---|
39 | MFParticleId.cc \
|
---|
40 | MFAlpha.cc \
|
---|
41 | MFCT1SelBasic.cc \
|
---|
42 | MFCT1SelStandard.cc \
|
---|
43 | MFCT1SelFinal.cc \
|
---|
44 | MFSelBasic.cc \
|
---|
45 | MFSelStandard.cc \
|
---|
46 | MFSelFinal.cc \
|
---|
47 | MFSoftwareTrigger.cc \
|
---|
48 | MFCosmics.cc \
|
---|
49 | MFEnergySlope.cc
|
---|
50 |
|
---|
51 | SRCS = $(SRCFILES)
|
---|
52 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
53 | OBJS = $(SRCFILES:.cc=.o)
|
---|
54 |
|
---|
55 | ############################################################
|
---|
56 |
|
---|
57 | all: $(LIB)
|
---|
58 |
|
---|
59 | include ../Makefile.rules
|
---|
60 |
|
---|
61 | #clean: rmcint rmobjs rmcore rmlib
|
---|
62 |
|
---|
63 | mrproper: clean rmbak
|
---|
64 |
|
---|
65 | # @endcode
|
---|
66 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.