################################################################## # # makefile # # for the MARS software # ################################################################## include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # # Handling name of the Root Dictionary Files # CINT = Analysis # # Library name to creatre # LIB = manalysis.a # # connect the include files defined in the config.mk file # INCLUDES = -I. -I../mbase -I../mgui #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MCT1Pedestals.cc \ MCT1ReadAscii.cc \ MCerPhotEvt.cc \ MCerPhotPix.cc SRCS = $(SRCFILES) HEADERS = $(SRCFILES:.cc=.h) OBJS = $(SRCFILES:.cc=.o) ############################################################ all: $(LIB) include ../Makefile.rules clean: rmlib rmcint rmobjs rmcore rmbin mrproper: clean rmbak # @endcode