# ====================================================================== # # HepTuple histo library-building GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target library: # ---------------------------------------------------------------------- LIB = libHistoHepTuple.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 += -I$(HISTO_INC) #override CPPFLAGS += -DHEPTRACE ifneq (,$(findstring IRIX,$(SRT_ARCH))) ifneq (,$(findstring KCC,$(SRT_CXX))) override CXXFLAGS += --backend -OPT:Olimit=0 override CCFLAGS += --backend -OPT:Olimit=0 endif endif # ======================================================================