################################################################## # # makefile # # for the MARS software # ################################################################## include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # # Handling name of the Root Dictionary Files # CINT = Report # # Library name to creatre # LIB = mreport.a # # connect the include files defined in the config.mk file # INCLUDES = -I. -I../mbase -I../mtools -I../mcamera -I../mgui # mgui - MCameraDC #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MReport.cc \ MReportCC.cc \ MReportRun.cc \ MReportDAQ.cc \ MReportHelp.cc \ MReportDrive.cc \ MReportCamera.cc \ MReportTrigger.cc \ MReportCurrents.cc \ MReportFileRead.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