################################################################## # # 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 -I../mmc -I../mraw #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MCT1ReadAscii.cc \ MPedestalCam.cc \ MPedestalPix.cc \ MMcPedestalCopy.cc \ MImgCleanStd.cc \ MHillas.cc \ MHillasCalc.cc \ MCerPhotCalc.cc \ MCerPhotEvt.cc \ MCerPhotPix.cc \ MPedCalcPedRun.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