# ====================================================================== # # HepTuple library-building GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target library: # ---------------------------------------------------------------------- LIB = libHepTuple.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/arch_spec_STL.mk include SoftRelTools/refresh.mk include Exceptions/arch_spec_Exceptions.mk # ---------------------------------------------------------------------- # Make environment-dependent adaptations: # ---------------------------------------------------------------------- ifeq (-KCC,$(findstring -KCC,$(BFARCH))) override CXXFLAGS += --display_error_number --diag_suppress 610,611,553,177 endif #override CPPFLAGS += -DHEPTRACE ifeq ($(SRT_ARCH),IRIX6) ifneq (,$(findstring KCC,$(SRT_CXX))) override CXXFLAGS += --backend -OPT:Olimit=0 override CCFLAGS += --backend -OPT:Olimit=0 endif endif # ======================================================================