################################################################## # # makefile # # for the MARS software # ################################################################## include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # # Handling name of the Root Dictionary Files # CINT = Gui # # Library name to creatre # LIB = mgui.a # # connect the include files defined in the config.mk file # INCLUDES = -I. -I../mbase -I../manalysis -I../mdatacheck -I../meventdisp #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MHexagon.cc \ MGeomPix.cc \ MGeomCam.cc \ MCamDisplay.cc \ MGeomCamCT1.cc \ MGeomCamMagic.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