36 lines
994 B
Plaintext
36 lines
994 B
Plaintext
#CONFIG_APP
|
|
include $(TOP)/configure/RELEASE
|
|
-include $(TOP)/configure/RELEASE.$(HOST_ARCH)
|
|
CONFIG=$(EPICS_BASE)/configure
|
|
include $(EPICS_BASE)/configure/CONFIG
|
|
INSTALL_LOCATION = $(TOP)
|
|
ifdef INSTALL_LOCATION_APP
|
|
INSTALL_LOCATION = $(INSTALL_LOCATION_APP)
|
|
endif
|
|
|
|
#Other share areas can be added similar to following
|
|
#ifdef <share_top>
|
|
#USR_INCLUDES += -I$(<share_top>)/include
|
|
#<share_top>BIN = $(<share_top>)/bin/$(T_A)
|
|
#endif
|
|
|
|
ifdef SHARE
|
|
USR_INCLUDES += -I$(SHARE)/include
|
|
SHARE_BIN = $(SHARE)/bin/$(T_A)
|
|
USER_DBDFLAGS += -I .. -I $(SHARE)/dbd -I $(EPICS_BASE)/dbd
|
|
endif
|
|
|
|
#Following only works if host provides soft links
|
|
ifdef MASTER_IOCAPPS
|
|
USR_INCLUDES += -I$(MASTER_IOCAPPS)/include
|
|
MASTER_IOCAPPS_BIN = $(MASTER_IOCAPPS)/bin/$(T_A)
|
|
endif
|
|
|
|
# Where to install databases
|
|
INSTALL_DB = $(INSTALL_LOCATION)/db
|
|
# dbst based database optimization (default: NO)
|
|
DB_OPT = NO
|
|
# May be overridden if not all databases should be installed
|
|
INSTALLDB = $(DB)
|
|
#######include $(TOP)/configure/CONFIG
|