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

Last change on this file since 597 was 592, checked in by harald, 24 years ago
Introduced a Task to read in the data from CT1 files to study the behaviour of different analysis methods. Also the macro "macros/readCT1.C" was added that reads in the CT1 data files and puts the content in the MNphotEvent container. Then you can access that representation of this event.
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 = MNphotEvent.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.