################################################################## # # makefile # # for the MARS software # ################################################################## # @maintitle # @code # # please change all system depend values in the # config.mk.${OSTYPE} file # # include ../Makefile.conf.$(OSTYPE) include ../Makefile.conf.general # @endcode INCLUDES = -I. -I.. # @code CINT = Base LIB = base.a #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = File.cc \ MStopwatch.cc \ MThread.cc \ MTimeout.cc \ msgqueue.cc \ MLog.cc \ MLogManip.cc \ timer.cc CINTHEADERS = MLog.h \ MLogManip.h SRCS = $(SRCFILES) HEADERS = $(SRCFILES:.cc=.h) OBJS = $(SRCFILES:.cc=.o) ############################################################ all: $(LIB) include ../Makefile.rules clean: rmlib rmcint rmobjs rmcore mrproper: clean rmbak # @endcode