################################################################## # # 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.. -I../base -I../slalib -I../candrv -I../incl \ -I../catalog -I../videodev -I../main -I../caos -I../tcpip \ -I../mars # @code CINT = Gui LIB = gui.a #------------------------------------------------------------------------------ .SUFFIXES: .c .cc .cxx .h .hxx .o SRCFILES = MGCosy.cc \ MGCoordinate.cc \ MGCoordinates.cc \ MGImage.cc \ MGEmbeddedCanvas.cc \ MGAccuracy.cc \ MGStarg.cc \ MGNumStars.cc \ MGSkyPosition.cc SRCS = $(SRCFILES) HEADERS = $(SRCFILES:.cc=.h) OBJS = $(SRCFILES:.cc=.o) CINTHEADERS = $(HEADERS) ############################################################ all: $(LIB) include ../Makefile.rules clean: rmlib rmcint rmobjs rmcore mrproper: clean rmbak # @endcode