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

Last change on this file since 3535 was 3504, 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 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 MStatusArray.cc \
62 MStatusDisplay.cc \
63 MArray.cc \
64 MArrayB.cc \
65 MArrayS.cc \
66 MTime.cc \
67 MClone.cc \
68 MContinue.cc \
69 MPrint.cc
70
71SRCS = $(SRCFILES)
72HEADERS = $(SRCFILES:.cc=.h)
73OBJS = $(SRCFILES:.cc=.o)
74
75############################################################
76
77all: $(LIB)
78
79include ../Makefile.rules
80
81#clean: rmcint rmobjs rmcore rmlib
82
83mrproper: clean rmbak
84
85# @endcode
Note: See TracBrowser for help on using the repository browser.