Skip to content
Snippets Groups Projects
Commit ed0c37b2 authored by mooney's avatar mooney
Browse files

Added ifdefs for ETHERIP, ALIVE, DELAYGEN, and VAC modules

parent 74cc338f
No related branches found
No related tags found
No related merge requests found
......@@ -119,10 +119,31 @@ ifdef STREAM
endif
ifdef DEVIOCSTATS
ifneq ($(OS_CLASS), WIN32)
xxx_Common_DBD += devIocStats.dbd iocAdmin.dbd
xxx_Common_DBD += devIocStats.dbd iocAdmin.dbd
xxx_Common_LIBS := devIocStats $(xxx_Common_LIBS)
endif
endif
ifdef ETHERIP
xxx_Common_DBD += ether_ip.dbd
xxx_Common_LIBS := ether_ip $(xxx_Common_LIBS)
endif
ifdef ALIVE
xxx_Common_DBD += aliveSupport.dbd
xxx_Common_LIBS := alive $(xxx_Common_LIBS)
endif
ifdef DELAYGEN
xxx_Common_DBD += delaygenSupport.dbd
xxx_Common_LIBS := delaygen $(xxx_Common_LIBS)
endif
ifdef VAC
xxx_Common_DBD += vacSupport.dbd
xxx_Common_LIBS := vac $(xxx_Common_LIBS)
endif
xxx_Common_LIBS := $(xxx_Common_LIBS) $(EPICS_BASE_IOC_LIBS)
##################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment