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

Last change on this file since 2063 was 2063, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.3 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../mraw -I../MRawFormat -I../mmc -I../mfileio \
23 -I../mmain -I../mfilter
24
25# @code
26
27CINT = Base
28LIB = mbase.a
29
30#------------------------------------------------------------------------------
31
32.SUFFIXES: .c .cc .cxx .h .hxx .o
33
34SRCFILES = MLogo.cc \
35 MLog.cc \
36 MParContainer.cc \
37 MParList.cc \
38 MInputStreamID.cc \
39 MTask.cc \
40 MTaskList.cc \
41 MFilter.cc \
42 MEvtLoop.cc \
43 MIter.cc \
44 MGList.cc \
45 MGTask.cc \
46 MGGroupFrame.cc \
47 MArray.cc \
48 MArrayB.cc \
49 MArrayS.cc \
50 MTime.cc \
51 MClone.cc \
52 MContinue.cc \
53 MPrint.cc \
54 MLogManip.cc
55
56SRCS = $(SRCFILES)
57HEADERS = $(SRCFILES:.cc=.h)
58OBJS = $(SRCFILES:.cc=.o)
59
60############################################################
61
62all: $(LIB)
63
64include ../Makefile.rules
65
66clean: rmcint rmobjs rmcore rmlib
67
68mrproper: clean rmbak
69
70# @endcode
71
Note: See TracBrowser for help on using the repository browser.