# actual Makefile for SoftRelTools # # DON'T use this as a base for your version - use # GNUmakefile.example for that. # # uses SoftRelTools/standard.mk # # Bob Jacobsen, December 1994 # # # 8-Dec-97 jonckheere@fnal.gov # Added NT directory for winNT specific code, only active on NT # ############################################################# # file lists (standard names, local contents) # include file products INC = # library product LIB = #library contents LIBFFILES = LIBCFILES = LIBCCFILES = # subdirectories ifneq (,$(findstring NT4,$(BFARCH))) SUBDIRS = nt else SUBDIRS = endif # binary products BINS = newrel newver newpkg \ rmrel rmver \ addpkg rmpkg lnkpkg depend \ f77bb vms2f90 \ makeReleaseList statusrel \ setcompiler relpathto ifeq (D0,$(EXPERIMENT)) BINS += d0newpkg kcc-ar2 pkgpath.sh endif MANPAGES = newrel.1 newver.1 newpkg.1 \ rmrel.1 rmver.1 \ addpkg.1 lnkpkg.1 depend.1 \ SRTstartup.1 statusrel.1 \ setcompiler.1 ifeq (D0,$(EXPERIMENT)) MANPAGES += d0newpkg.1 endif DOCS = SoftRelToolIntro.ps SoftRelToolUser.ps $(foreach v,$(BINS),$(bindir)$v): $(BINS) rm -f $@ cp $(@F) $@ chmod 555 $@ ############################################################ include SoftRelTools/standard.mk