# Makefile for the TrackingMods package # # uses SoftRelTools/standard.mk # ############################################################# #--- I don't quite understand why _RUNSVXVALIDATION has to be a cpp switch. #--- Is this because of the link order dependencies? Or because passing #--- MC info through a global singleton is a no-no? Anyhow, this is the #--- hack that allows one to just do "setenv _RUNSVXVALIDATION blah" and #--- compile... ifdef _RUNSVXVALIDATION override CXXFLAGS += -D_RUNSVXVALIDATION=YES endif # file lists (standard names, local contents) # include file products INC = # library product LIB = libTrackingMods.a LIBCCFILES = $(filter-out $(skip_files), $(wildcard *.cc)) LIBCPPFILES = $(filter-out $(skip_files), $(wildcard *.cpp)) LIBCXXFILES = $(filter-out $(skip_files), $(wildcard *.cxx)) LIBFFILES = $(wildcard *.f) $(wildcard *.F) LIBCFILES = $(wildcard *.c) # official binary products to be validated BINS = # test binary products TBINS = ############################################################ include SoftRelTools/arch_spec_Tcl.mk include SoftRelTools/arch_spec_root_minedm.mk include TrackingUtils/arch_spec_Tracking_src.mk include SoftRelTools/standard.mk include SoftRelTools/refresh.mk include TrackingUtils/arch_spec_Tracking_post_standard.mk