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

Last change on this file since 2993 was 2993, 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../mfilter
23# mfileio: MRead (MEvtLoop)
24# mfilter: MF (MContinue)
25
26# @code
27
28CINT = Base
29LIB = mbase.a
30
31#------------------------------------------------------------------------------
32
33.SUFFIXES: .c .cc .cxx .h .hxx .o
34
35SRCFILES = 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
70SRCS = $(SRCFILES)
71HEADERS = $(SRCFILES:.cc=.h)
72OBJS = $(SRCFILES:.cc=.o)
73
74############################################################
75
76all: $(LIB)
77
78include ../Makefile.rules
79
80#clean: rmcint rmobjs rmcore rmlib
81
82mrproper: clean rmbak
83
84# @endcode
Note: See TracBrowser for help on using the repository browser.