# ====================================================================== # # CovMatrices library-building GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target library: # ---------------------------------------------------------------------- LIB = libCovMatrices.a # ---------------------------------------------------------------------- # Identify the sources from which to build the library's contents: # ---------------------------------------------------------------------- LIBCCFILES = $(wildcard *.cc) # ---------------------------------------------------------------------- # Connect to other packages: # ---------------------------------------------------------------------- USE_ISOCXX = true include SoftRelTools/standard.mk include SoftRelTools/refresh.mk # Force optimization override CXXFLAGS := $(filter-out -O0 -O1 -O2 -O3, $(CXXFLAGS)) -O3 override CPPFLAGS := $(filter-out -O0 -O1 -O2 -O3, $(CPPFLAGS)) -O3 # ======================================================================