# ====================================================================== # # ZMutility library-building GNUmakefile # # ====================================================================== # ---------------------------------------------------------------------- # Identify the target library: # ---------------------------------------------------------------------- ifeq (CDF,$(SRT_PROJECT)) LINK_SHARED_MODULES = yes LIB_TYPE=both # The CDF place to put shared object libraries... SHLIB_DIR=$(SRT_PRIVATE_CONTEXT)/shlib/$(SRT_SUBDIR)/ endif LIB = libZMutility.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/refresh.mk # ---------------------------------------------------------------------- # Make environment-specific adaptations: # ---------------------------------------------------------------------- override LINK_$(PACKAGE) += $(PACKAGE)/src/GNUmakefile ifeq (BABAR,$(EXPERIMENT)) include PackageList/link_all_reco.mk endif # ======================================================================