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

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