| 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 | MReadSocket.cc \
|
|---|
| 56 | MDirIter.cc \
|
|---|
| 57 | MGGroupFrame.cc \
|
|---|
| 58 | MGList.cc \
|
|---|
| 59 | MGTask.cc \
|
|---|
| 60 | MStatusDisplay.cc \
|
|---|
| 61 | MArray.cc \
|
|---|
| 62 | MArrayB.cc \
|
|---|
| 63 | MArrayS.cc \
|
|---|
| 64 | MTime.cc \
|
|---|
| 65 | MClone.cc \
|
|---|
| 66 | MContinue.cc \
|
|---|
| 67 | MPrint.cc
|
|---|
| 68 |
|
|---|
| 69 | SRCS = $(SRCFILES)
|
|---|
| 70 | HEADERS = $(SRCFILES:.cc=.h)
|
|---|
| 71 | OBJS = $(SRCFILES:.cc=.o)
|
|---|
| 72 |
|
|---|
| 73 | ############################################################
|
|---|
| 74 |
|
|---|
| 75 | all: $(LIB)
|
|---|
| 76 |
|
|---|
| 77 | include ../Makefile.rules
|
|---|
| 78 |
|
|---|
| 79 | clean: rmcint rmobjs rmcore rmlib
|
|---|
| 80 |
|
|---|
| 81 | mrproper: clean rmbak
|
|---|
| 82 |
|
|---|
| 83 | # @endcode
|
|---|
| 84 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.