Combine recIoc and softDevIoc libraries into dbRecStd Move base.dbd from ioc/misc/ to std/softIoc/ Generate stdRecords.dbd from the std/rec/Makefile list of record types instead of hard-coding it in base.dbd
31 lines
863 B
Makefile
31 lines
863 B
Makefile
##########################################################################
|
|
# Copyright (c) 2011 UChicago Argonne LLC, as Operator of Argonne
|
|
# National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in the file LICENSE that is included with this distribution.
|
|
##########################################################################
|
|
|
|
# This is a Makefile fragment, see src/ioc/Makefile.
|
|
|
|
SRC_DIRS += $(STDDIR)/softIoc
|
|
|
|
PROD_IOC = softIoc
|
|
|
|
DBD += base.dbd
|
|
DBD += softIoc.dbd
|
|
|
|
softIoc_DBD += base.dbd
|
|
softIoc_DBD += dlload.dbd
|
|
softIoc_DBD += system.dbd
|
|
|
|
softIoc_SRCS += softIoc_registerRecordDeviceDriver.cpp
|
|
softIoc_SRCS_DEFAULT += softMain.cpp
|
|
softIoc_SRCS_vxWorks = -nil-
|
|
|
|
softIoc_LIBS = $(EPICS_BASE_IOC_LIBS)
|
|
|
|
DB += softIocExit.db
|
|
|
|
FINAL_LOCATION ?= $(shell $(PERL) $(TOOLS)/fullPathName.pl $(INSTALL_LOCATION))
|
|
|