################################################################## # # config.mk # # @file config.mk # ################################################################## # @maintitle # @code # # compilers # CC = cc CXX = cxx F77 = f77 AR = ar -c -r # # ----->>> settings for compilation # OPTIM = -O2 -ieee -arch host DEBUG = -g MARS_LIB = -Llib $(SUBDIRS/*/-l&) INCLUDES = -I. $(SUBDIRS/*/-I&) # uncomment this for quiet compilation .SILENT: # @endcode ##EOF