################################################################## # # makefile # # for the MARS software # ################################################################## # @maintitle # @code # # please change all system depend values in the # config.mk.${OSTYPE} file # # include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # @endcode INCLUDES = -I. -I../mbase -I../mraw -I../mmc -I../mdata -I../manalysis -I../mgeom # @code CINT = FileIO LIB = mfileio.a #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MChain.cc \ MRead.cc \ MReadTree.cc \ MReadMarsFile.cc \ MWriteFile.cc \ MWriteAsciiFile.cc \ MWriteRootFile.cc \ MCT1ReadAscii.cc \ MCT1ReadPreProc.cc SRCS = $(SRCFILES) HEADERS = $(SRCFILES:.cc=.h) OBJS = $(SRCFILES:.cc=.o) ############################################################ all: $(LIB) include ../Makefile.rules clean: rmcint rmobjs rmcore rmlib mrproper: clean rmbak # @endcode