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

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