source: trunk/MagicSoft/include-Classes/MMcFormat/Makefile@ 1247

Last change on this file since 1247 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.
  • Property svn:executable set to *
File size: 945 bytes
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../mbase -I../MBase
23
24# @code
25
26CINT = Mc
27LIB = mmc.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MMcTrigHeader.cxx \
34 MMcFadcHeader.cxx \
35 MMcRunHeader.cxx \
36 MMcEvt.cxx \
37 MMcTrig.cxx
38
39SRCS = $(SRCFILES)
40HEADERS = $(SRCFILES:.cxx=.hxx)
41OBJS = $(SRCFILES:.cxx=.o)
42
43############################################################
44
45all: $(LIB)
46
47include ../Makefile.rules
48
49clean: rmcint rmobjs rmcore rmlib
50
51mrproper: clean rmbak
52
53# @endcode
Note: See TracBrowser for help on using the repository browser.