################################################################## # # makefile # # for the MARS software # ################################################################## include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # # Handling name of the Root Dictionary Files # CINT = Signal # # Library name to creatre # LIB = msignal.a # # connect the include files defined in the config.mk file # INCLUDES = -I. -I../mbase -I../mmc -I../mraw -I../mgeom -I../mfilter \ -I../mdata -I../mhbase -I../mhist -I../mgui -I../mimage \ -I../mhistmc -I../mfileio -I../mmain -I../mcalib \ -I../mpointing -I../mtools -I../manalysis # mgui (MCamEvent), mgeom(MGeomCam) #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MArrivalTimeCam.cc \ MArrivalTimePix.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