################################################################## # # makefile # # for the MARS software # ################################################################## include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # # Handling name of the Root Dictionary Files # CINT = DataCheck # # Library name to creatre # LIB = mdatacheck.a # # connect the include files defined in the config.mk file # INCLUDES = -I. -I../mbase -I../mraw -I../manalysis #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MDumpEvtHeader.cc \ MFillHFadc.cc \ MFillHHillas.cc \ MGDisplayAdc.cc \ MHFadcPix.cc \ MHFadcCam.cc \ MHHillas.cc \ MShowSpect.cc \ MViewAdcSpectra.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