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

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