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../mfileio -I../mfilter
|
---|
23 | # mfileio: MRead (MEvtLoop)
|
---|
24 | # mfilter: MF (MContinue)
|
---|
25 |
|
---|
26 | # @code
|
---|
27 |
|
---|
28 | CINT = Base
|
---|
29 | LIB = mbase.a
|
---|
30 |
|
---|
31 | #------------------------------------------------------------------------------
|
---|
32 |
|
---|
33 | .SUFFIXES: .c .cc .cxx .h .hxx .o
|
---|
34 |
|
---|
35 | SRCFILES = MLogo.cc \
|
---|
36 | MArgs.cc \
|
---|
37 | MAstro.cc \
|
---|
38 | MLog.cc \
|
---|
39 | MLogManip.cc \
|
---|
40 | MLogPlugin.cc \
|
---|
41 | MLogHtml.cc \
|
---|
42 | MParContainer.cc \
|
---|
43 | MParList.cc \
|
---|
44 | MInputStreamID.cc \
|
---|
45 | MTask.cc \
|
---|
46 | MTaskInteractive.cc \
|
---|
47 | MTaskList.cc \
|
---|
48 | MFilter.cc \
|
---|
49 | MEvtLoop.cc \
|
---|
50 | MStatusDisplay.cc \
|
---|
51 | MProgressBar.cc \
|
---|
52 | MSearch.cc \
|
---|
53 | MGMenu.cc \
|
---|
54 | MIter.cc \
|
---|
55 | MDirIter.cc \
|
---|
56 | MRunIter.cc \
|
---|
57 | MReadSocket.cc \
|
---|
58 | MGGroupFrame.cc \
|
---|
59 | MGList.cc \
|
---|
60 | MGTask.cc \
|
---|
61 | MStatusDisplay.cc \
|
---|
62 | MArray.cc \
|
---|
63 | MArrayB.cc \
|
---|
64 | MArrayS.cc \
|
---|
65 | MTime.cc \
|
---|
66 | MClone.cc \
|
---|
67 | MContinue.cc \
|
---|
68 | MPrint.cc
|
---|
69 |
|
---|
70 | SRCS = $(SRCFILES)
|
---|
71 | HEADERS = $(SRCFILES:.cc=.h)
|
---|
72 | OBJS = $(SRCFILES:.cc=.o)
|
---|
73 |
|
---|
74 | ############################################################
|
---|
75 |
|
---|
76 | all: $(LIB)
|
---|
77 |
|
---|
78 | include ../Makefile.rules
|
---|
79 |
|
---|
80 | #clean: rmcint rmobjs rmcore rmlib
|
---|
81 |
|
---|
82 | mrproper: clean rmbak
|
---|
83 |
|
---|
84 | # @endcode
|
---|
Note:
See
TracBrowser
for help on using the repository browser.