source: trunk/MagicSoft/Mars/mfileio/Makefile@ 1574

Last change on this file since 1574 was 1574, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.1 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../mbase -I../mraw -I../mmc -I../mdata -I../manalysis -I../mgeom
23
24# @code
25
26CINT = FileIO
27LIB = mfileio.a
28
29#------------------------------------------------------------------------------
30
31.SUFFIXES: .c .cc .cxx .h .hxx .o
32
33SRCFILES = MChain.cc \
34 MReadTree.cc \
35 MReadMarsFile.cc \
36 MWriteFile.cc \
37 MWriteAsciiFile.cc \
38 MWriteRootFile.cc \
39 MCT1ReadAscii.cc \
40 MCT1ReadPreProc.cc
41
42SRCS = $(SRCFILES)
43HEADERS = $(SRCFILES:.cc=.h)
44OBJS = $(SRCFILES:.cc=.o)
45
46############################################################
47
48all: $(LIB)
49
50include ../Makefile.rules
51
52clean: rmcint rmobjs rmcore rmlib
53
54mrproper: clean rmbak
55
56# @endcode
57
Note: See TracBrowser for help on using the repository browser.