optionally include autosave, caPutLog, and/or devIocStats

This commit is contained in:
Michael Davidsaver
2014-06-16 15:02:15 -04:00
parent 405a242584
commit d10ecd5d69
3 changed files with 35 additions and 8 deletions

View File

@ -12,6 +12,14 @@ include $(TOP)/configure/CONFIG
# databases, templates, substitutions like this
#DB += xxx.db
ifneq ($(DEVIOCSTATS),)
DB_INSTALLS += $(DEVIOCSTATS)/db/iocAdminSoft.db
endif
ifneq ($(AUTOSAVE),)
DB_INSTALLS += $(firstword $(wildcard $(AUTOSAVE)/asApp/Db/save_restoreStatus.db $(AUTOSAVE)/db/save_restoreStatus.db))
endif
#----------------------------------------------------
# If <anyname>.db template is not named <anyname>*.template add
# <anyname>_template = <templatename>

View File

@ -40,6 +40,8 @@ DBD += softIocPy.dbd
softIocPy_DBD += base.dbd
softIocPy_DBD += pyDevSup.dbd
softIocPy_DBD += system.dbd
softIocPy$(PY_VER)_LIBS += pyDevSup$(PY_LD_VER)
# softIocPy_registerRecordDeviceDriver.cpp derives from softIocPy.dbd
@ -47,10 +49,21 @@ softIocPy$(PY_VER)_SRCS += softIocPy_registerRecordDeviceDriver.cpp
# Build the main IOC entry point on workstation OSs.
softIocPy$(PY_VER)_SRCS_DEFAULT += devsupMain.cpp
softIocPy$(PY_VER)_SRCS_vxWorks += -nil-
# Add support from base/src/vxWorks if needed
#softIocPy$(PY_VER)_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
ifneq ($(DEVIOCSTATS),)
softIocPy_DBD += devIocStats.dbd
softIocPy$(PY_VER)_LIBS += devIocStats
endif
ifneq ($(AUTOSAVE),)
softIocPy_DBD += asSupport.dbd
softIocPy$(PY_VER)_LIBS += autosave
endif
ifneq ($(CAPUTLOG),)
softIocPy_DBD += caPutLog.dbd
softIocPy$(PY_VER)_LIBS += caPutLog
endif
# Finally link to the EPICS Base libraries
softIocPy$(PY_VER)_LIBS += $(EPICS_BASE_IOC_LIBS)