#Make tbine the default construct tbin: # ====================================================================== # # CovMatrices binary-building GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target binaries: # ---------------------------------------------------------------------- BINS = TBINS = $(patsubst %.cc,%,$(wildcard *.cc)) TBIN_DIR = $(SRT_PRIVATE_CONTEXT)/CovMatrices/Tests/ # ---------------------------------------------------------------------- # Identify and categorize the sources for the above-named binaries: # ---------------------------------------------------------------------- SIMPLEBINS = $(patsubst %.cc,%,$(wildcard *.cc)) COMPLEXBIN = BINCCFILES = \ # ---------------------------------------------------------------------- # Identify other libraries to be linked: # ---------------------------------------------------------------------- BINLIBS = -lCovMatrices -lm # ---------------------------------------------------------------------- # Connect to other packages: # ---------------------------------------------------------------------- USE_ISOCXX = true include SoftRelTools/standard.mk # ---------------------------------------------------------------------- # Make environment-specific adaptations: # ---------------------------------------------------------------------- ifeq (-MSVC50,$(findstring -MSVC50,$(BFARCH))) override BINLIBS := $(subst -lm,,$(BINLIBS)) endif # Force no optimization override CXXFLAGS := $(filter-out -O0 -O1 -O2 -O3, $(CXXFLAGS)) -O0 override CPPFLAGS := $(filter-out -O0 -O1 -O2 -O3, $(CPPFLAGS)) -O0 # ======================================================================