source: trunk/MagicSoft/Mars/manalysis/Makefile@ 601

Last change on this file since 601 was 601, checked in by harald, 24 years ago
At the Barcelona workshop we decided to rename the class MNphotEvent to MCerPhotEvt. This is done now.
File size: 882 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../mgui
23
24# @code
25
26CINT = Analysis
27LIB = manalysis.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MCerPhotEvt.cc \
34 MReadCT1Ascii.cc
35
36SRCS = $(SRCFILES)
37HEADERS = $(SRCFILES:.cc=.h)
38OBJS = $(SRCFILES:.cc=.o)
39
40############################################################
41
42all: $(LIB)
43
44include ../Makefile.rules
45
46clean: rmlib rmcint rmobjs rmcore
47
48mrproper: clean rmbak
49
50# @endcode
51
Note: See TracBrowser for help on using the repository browser.