source: trunk/MagicSoft/Mars/mbase/Makefile@ 3759

Last change on this file since 3759 was 3581, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.7 KB
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#
17include ../Makefile.conf.$(OSTYPE)
18include ../Makefile.conf.general
19
20# @endcode
21
22INCLUDES = -I. -I../mfileio -I../mfbase -I../mastro
23# mfileio: MRead (MEvtLoop)
24# mfbase: MF (MContinue)
25# mastro: MAstro (MTime)
26
27# @code
28
29CINT = Base
30LIB = mbase.a
31
32#------------------------------------------------------------------------------
33
34.SUFFIXES: .c .cc .cxx .h .hxx .o
35
36SRCFILES = MLogo.cc \
37 MArgs.cc \
38 MMath.cc \
39 MLog.cc \
40 MLogManip.cc \
41 MLogPlugin.cc \
42 MLogHtml.cc \
43 MParContainer.cc \
44 MParList.cc \
45 MInputStreamID.cc \
46 MTask.cc \
47 MTaskInteractive.cc \
48 MTaskList.cc \
49 MFilter.cc \
50 MEvtLoop.cc \
51 MStatusDisplay.cc \
52 MProgressBar.cc \
53 MSearch.cc \
54 MGMenu.cc \
55 MIter.cc \
56 MDirIter.cc \
57 MRunIter.cc \
58 MReadSocket.cc \
59 MGGroupFrame.cc \
60 MGList.cc \
61 MGTask.cc \
62 MStatusArray.cc \
63 MStatusDisplay.cc \
64 MArray.cc \
65 MArrayB.cc \
66 MArrayS.cc \
67 MTime.cc \
68 MClone.cc \
69 MContinue.cc \
70 MPrint.cc
71
72SRCS = $(SRCFILES)
73HEADERS = $(SRCFILES:.cc=.h)
74OBJS = $(SRCFILES:.cc=.o)
75
76############################################################
77
78all: $(LIB)
79
80include ../Makefile.rules
81
82#clean: rmcint rmobjs rmcore rmlib
83
84mrproper: clean rmbak
85
86# @endcode
Note: See TracBrowser for help on using the repository browser.