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../mraw -I../mmc -I../mdata -I../manalysis -I../mgeom
|
---|
23 |
|
---|
24 | # @code
|
---|
25 |
|
---|
26 | CINT = FileIO
|
---|
27 | LIB = mfileio.a
|
---|
28 |
|
---|
29 | #------------------------------------------------------------------------------
|
---|
30 |
|
---|
31 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
32 |
|
---|
33 | SRCFILES = MChain.cc \
|
---|
34 | MRead.cc \
|
---|
35 | MReadTree.cc \
|
---|
36 | MReadMarsFile.cc \
|
---|
37 | MWriteFile.cc \
|
---|
38 | MWriteAsciiFile.cc \
|
---|
39 | MWriteRootFile.cc \
|
---|
40 | MCT1ReadAscii.cc \
|
---|
41 | MCT1ReadPreProc.cc
|
---|
42 |
|
---|
43 | SRCS = $(SRCFILES)
|
---|
44 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
45 | OBJS = $(SRCFILES:.cc=.o)
|
---|
46 |
|
---|
47 | ############################################################
|
---|
48 |
|
---|
49 | all: $(LIB)
|
---|
50 |
|
---|
51 | include ../Makefile.rules
|
---|
52 |
|
---|
53 | clean: rmcint rmobjs rmcore rmlib
|
---|
54 |
|
---|
55 | mrproper: clean rmbak
|
---|
56 |
|
---|
57 | # @endcode
|
---|
58 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.