47 lines
1010 B
Plaintext
47 lines
1010 B
Plaintext
#
|
|
# $Id$
|
|
#
|
|
# The developer may edit this file.
|
|
|
|
# assume T_A is the host arch if not specified
|
|
ifndef T_A
|
|
T_A = $(HOST_ARCH)
|
|
endif
|
|
|
|
# EPICS base definitions
|
|
#
|
|
include $(EPICS_BASE)/config/CONFIG_COMMON
|
|
|
|
# Site-specific build options
|
|
#
|
|
include $(EPICS_BASE)/config/CONFIG_SITE
|
|
|
|
# Architecture specific definitions
|
|
#
|
|
include $(EPICS_BASE)/config/CONFIG.$(T_A)
|
|
#
|
|
-include $(EPICS_BASE)/config/CONFIG_SITE.$(T_A)
|
|
|
|
# User specific definitions
|
|
#
|
|
-include $(HOME)/EPICS_CONFIG
|
|
-include $(HOME)/EPICS_CONFIG.$(HOST_ARCH)
|
|
|
|
# All EPICS options other than BUILD_TYPE
|
|
# may be overridden here.
|
|
#
|
|
# EXAMPLES
|
|
# --------
|
|
# Build client objects statically ? must be either YES or NO
|
|
#STATIC_BUILD=NO
|
|
# Unix Optimization, must be either YES or NO
|
|
#UNIX_OPT=YES
|
|
# VxWorks Optimization, must be either YES or NO
|
|
#VX_OPT=YES
|
|
# Generate Verbose Compiler Warnings for Unix, must be either YES or NO
|
|
#UNIX_WARN=YES
|
|
# Generate Verbose Compiler Warnings for VxWorks, must be either YES or NO
|
|
#VX_WARN=YES
|
|
#etc.
|
|
#
|