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

Last change on this file since 1160 was 1160, checked in by blanch, 23 years ago
Naming on Monte Carlo programs directory tree has been added to be able to use this Makefile also while compiling the Camera program.
File size: 1.4 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
23
24# @code
25
26CINT = Base
27LIB = mbase.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MParContainer.cc \
34 MParList.cc \
35 MInputStreamID.cc \
36 MTask.cc \
37 MTaskList.cc \
38 MFilter.cc \
39 MFilterList.cc \
40 MEvtLoop.cc \
41 MReadTree.cc \
42 MReadMarsFile.cc \
43 MWriteFile.cc \
44 MWriteAsciiFile.cc \
45 MWriteRootFile.cc \
46 MGList.cc \
47 MGTask.cc \
48 MGGroupFrame.cc \
49 MArray.cc \
50 MArrayB.cc \
51 MArrayS.cc \
52 MTime.cc \
53 MClone.cc \
54 MPrint.cc \
55 MLog.cc \
56 MLogManip.cc
57
58SRCS = $(SRCFILES)
59HEADERS = $(SRCFILES:.cc=.h)
60OBJS = $(SRCFILES:.cc=.o)
61
62############################################################
63
64all: $(LIB)
65
66include ../Makefile.rules
67
68clean: rmcint rmobjs rmcore rmlib
69
70mrproper: clean rmbak
71
72# @endcode
73
Note: See TracBrowser for help on using the repository browser.