# ====================================================================== # # PhysicsVectors top-level GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target package: # ---------------------------------------------------------------------- PACKAGE = PhysicsVectors # ---------------------------------------------------------------------- # Identify the package's (sub)directory structure: # ---------------------------------------------------------------------- PACKAGE_INCLUDE = PhysicsVectors SUBDIRS = src Tests Examples #SUBDIRS = src Examples # ---------------------------------------------------------------------- # Connect to other packages: # ---------------------------------------------------------------------- USE_ISOCXX = true include SoftRelTools/standard.mk # Force optimization OFF and symbols ON for debugging ifdef SYMBOLS ifneq (,$(findstring GCC,$(SRT_CXX))) override CXXFLAGS := $(patsubst -O%,-ggdb3,$(CXXFLAGS)) override CXXFLAGS := $(patsubst -O, -ggdb3,$(CXXFLAGS)) endif endif # ======================================================================