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

Last change on this file since 2624 was 2604, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.6 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 MLog.cc \
37 MArgs.cc \
38 MAstro.cc \
39 MParContainer.cc \
40 MParList.cc \
41 MInputStreamID.cc \
42 MTask.cc \
43 MTaskInteractive.cc \
44 MTaskList.cc \
45 MFilter.cc \
46 MEvtLoop.cc \
47 MStatusDisplay.cc \
48 MProgressBar.cc \
49 MSearch.cc \
50 MGMenu.cc \
51 MIter.cc \
52 MReadSocket.cc \
53 MDirIter.cc \
54 MGGroupFrame.cc \
55 MGList.cc \
56 MGTask.cc \
57 MStatusDisplay.cc \
58 MArray.cc \
59 MArrayB.cc \
60 MArrayS.cc \
61 MTime.cc \
62 MClone.cc \
63 MContinue.cc \
64 MPrint.cc \
65 MLogManip.cc
66
67SRCS = $(SRCFILES)
68HEADERS = $(SRCFILES:.cc=.h)
69OBJS = $(SRCFILES:.cc=.o)
70
71############################################################
72
73all: $(LIB)
74
75include ../Makefile.rules
76
77clean: rmcint rmobjs rmcore rmlib
78
79mrproper: clean rmbak
80
81# @endcode
82
Note: See TracBrowser for help on using the repository browser.