Files
epics-base/configure/os/CONFIG.UnixCommon.Common
2000-05-23 19:08:30 +00:00

27 lines
684 B
Plaintext

# CONFIG.UnixCommon.Common
#
# $Id$
# This file is maintained by the build community.
#
# Definitions common to unix hosts
# Sites may override these definitions in CONFIG_SITE.UnixCommon.Common
#-------------------------------------------------------
# Unix command definitions
CP = cp
MV = mv
RM = rm -f
MKDIR = mkdir
RMDIR = rm -rf
TOUCH = touch
# Set LD_LIBRARY_PATH for shared library builds
ifneq ($(EPICS_BASE),$(INSTALL_LOCATION))
export LD_LIBRARY_PATH := $(INSTALL_HOST_LIB):$(EPICS_BASE_HOST_LIB):$(LD_LIBRARY_PATH)
else
export LD_LIBRARY_PATH := $(EPICS_BASE_HOST_LIB):$(LD_LIBRARY_PATH)
endif
# Allow site overrides
-include $(CONFIG)/os/CONFIG_SITE.UnixCommon.Common