############################################################# # file lists (standard names, local contents) # include file products INC = # LINK_SHARED = # library product ifdef LINK_SHARED SHAREDLIB = libStntuple_mod.so else LIB = libStntuple_mod.a endif # library contents # Note: source files with main() definitions do not go # into the library--that is why we skip Calor_main.cc here. # Any file that builds an exe (e.g. CalTrigger_Build.cc) should # also be skipped. skip_files := ExoticMods_build.cc LIBCCFILES = $(filter-out $(skip_files), $(wildcard *.cc)) # *.F files will have the c preprocessor run on them, *.f files won't LIBFFILES = $(wildcard *.F) LIBCFILES = $(wildcard *.c) # You need this for the link to know about your library # # If your exe is going to use module from these other packages be sure to # include them here. # subdirectories SUBDIRS = dict # binary products TBINS = ############################################################ include SoftRelTools/arch_spec_STL.mk include SoftRelTools/standard.mk include SoftRelTools/arch_spec_oracle.mk include SoftRelTools/arch_spec_root.mk include SoftRelTools/refresh.mk