################################################################## # # makefile # # for the MARS software # ################################################################## include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # # Handling name of the Root Dictionary Files # CINT = HVsTime # # Library name to creatre # LIB = mhvstime.a # # connect the include files defined in the config.mk file # INCLUDES = -I. -I../mbase -I../mhbase -I../mgeom -I../mhist \ -I../mgui -I../mraw -I../mdata # mhist (MHCamera) # mgui (MCamEvent) # mraw (MRawEvtHeader) #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MHVsTime.cc \ MHPixVsTime.cc \ MHSectorVsTime.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