# $Id: variables.mk,v 1.7 2003/07/20 03:26:59 ehood Exp $ ##-----------------------------------------------------------------------## ## Common variables ##-----------------------------------------------------------------------## ifeq ($(_variables_mk),) _variables_mk:=1 ## Programs BZIP2 = /usr/bin/bzip2 CHMOD = /bin/chmod CP = /bin/cp EPM = epm FIND = find GREP = grep GZIP = /usr/bin/gzip LN = /bin/ln MKDIR = /bin/mkdir MKEPMLIST = mkepmlist MV = /bin/mv PERL = /usr/local/bin/perl RM = /bin/rm RPMBUILD = rpmbuild TAR = /bin/tar W3M = w3m ZIP = zip ## Path and pathname separators. ## NOTE: Unix pathname conventions should used when possible since ## Win32 systems do handle "/". However, PATHSEP should be ## be used since ":" under Win32 can be used in pathnames. SEP = / PATHSEP = : ifneq ($(COMSPEC),) # Win32 environment SEP = \\ PATHSEP = ; endif ## Path to projects releases root ifeq ($(PROJECTS_RELEASES),) PROJECTS_RELEASES = /mnt/WWW/customers/mhonarc.org/htdocs/release endif ## Set include search path ifeq ($(PERL_SEARCH_LIBS),) PERL_SEARCH_LIBS := $(TOP)/lib endif ## List of perl files to check. If not set, default to all files ## ending with .pm and .pl. ifeq ($(PERL_PL_FILES),) PERL_PL_FILES = $(strip $(wildcard *.pl)) endif ifeq ($(PERL_PM_FILES),) PERL_PM_FILES = $(strip $(wildcard *.pm)) endif ifeq ($(PERL_FILES),) PERL_FILES = $(PERL_PM_FILES) $(PERL_PL_FILES) endif endif # NOTHING GOES BELOW THIS LINE