# ====================================================================== # # ErrLogEx library-building GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target library: # ---------------------------------------------------------------------- LIB = libErrLogEx.a # ---------------------------------------------------------------------- # Identify the sources from which to build the library's contents: # ---------------------------------------------------------------------- LIBCCFILES = $(wildcard *.cc) # ---------------------------------------------------------------------- # Make environment-specific adaptations: # ---------------------------------------------------------------------- # These were removed 10/25/02 because then it works with GCC 3.1 and KAI # on IRIX # #ifeq (IRIX,$(findstring IRIX,$(BFARCH))) # override CPPFLAGS += -D_POSIX_4SOURCE -D_POSIX_C_SOURCE=199309L #endif # ---------------------------------------------------------------------- # Connect to other packages: # ---------------------------------------------------------------------- USE_ISOCXX = true include SoftRelTools/standard.mk include SoftRelTools/refresh.mk include Exceptions/arch_spec_Exceptions.mk # ======================================================================