The filter plugins are now in src/std/filters and their tests in the test subdirectory. Various portability issues found and fixed: * Variable declarations after statements in a block * Code assuming that epicsInt32 = long * // comments in C files Removed a number of tests that weren't really tests; preconditions for future tests that don't actually check the code being tested should call testAbort() if the condition fails, which tells the test harness that you meant to die at that point. Split up lots of very long source lines. Probably made a few other changes that I forget about now.
89 lines
2.3 KiB
Makefile
89 lines
2.3 KiB
Makefile
#*************************************************************************
|
|
# Copyright (c) 2011 UChicago Argonne LLC, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# EPICS BASE is distributed subject to a Software License Agreement found
|
|
# in file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
|
|
# This is a Makefile fragment, see src/ioc/Makefile.
|
|
|
|
SRC_DIRS += $(IOCDIR)/db
|
|
|
|
INC += callback.h
|
|
INC += dbAccess.h
|
|
INC += dbAccessDefs.h
|
|
INC += dbCa.h
|
|
INC += dbAddr.h
|
|
INC += dbBkpt.h
|
|
INC += dbChannel.h
|
|
INC += dbConvert.h
|
|
INC += dbConvertFast.h
|
|
INC += dbExtractArray.h
|
|
INC += dbEvent.h
|
|
INC += dbLink.h
|
|
INC += dbLock.h
|
|
INC += dbNotify.h
|
|
INC += dbScan.h
|
|
INC += dbTest.h
|
|
INC += dbCaTest.h
|
|
INC += db_test.h
|
|
INC += db_field_log.h
|
|
INC += initHooks.h
|
|
INC += recGbl.h
|
|
INC += dbIocRegister.h
|
|
INC += chfPlugin.h
|
|
INC += dbState.h
|
|
INC += db_access_routines.h
|
|
INC += db_convert.h
|
|
|
|
# Generate menuGlobal.dbd automatically
|
|
DBD += menuGlobal.dbd
|
|
menuGlobal_DBD += menuAlarmSevr.dbd
|
|
menuGlobal_DBD += menuAlarmStat.dbd
|
|
menuGlobal_DBD += menuCompress.dbd
|
|
menuGlobal_DBD += menuFtype.dbd
|
|
menuGlobal_DBD += menuIvoa.dbd
|
|
menuGlobal_DBD += menuOmsl.dbd
|
|
menuGlobal_DBD += menuPini.dbd
|
|
menuGlobal_DBD += menuPriority.dbd
|
|
menuGlobal_DBD += menuScan.dbd
|
|
menuGlobal_DBD += menuYesNo.dbd
|
|
menuGlobal_DBD += menuSimm.dbd
|
|
|
|
DBDINC += $(basename $(menuGlobal_DBD))
|
|
DBDINC += dbCommon
|
|
|
|
|
|
dbCore_SRCS += dbLock.c
|
|
dbCore_SRCS += dbAccess.c
|
|
dbCore_SRCS += dbBkpt.c
|
|
dbCore_SRCS += dbChannel.c
|
|
dbCore_SRCS += dbConvert.c
|
|
dbCore_SRCS += dbFastLinkConv.c
|
|
dbCore_SRCS += dbExtractArray.c
|
|
dbCore_SRCS += dbLink.c
|
|
dbCore_SRCS += dbNotify.c
|
|
dbCore_SRCS += dbScan.c
|
|
dbCore_SRCS += dbEvent.c
|
|
dbCore_SRCS += dbTest.c
|
|
dbCore_SRCS += db_access.c
|
|
dbCore_SRCS += db_test.c
|
|
dbCore_SRCS += recGbl.c
|
|
dbCore_SRCS += callback.c
|
|
dbCore_SRCS += dbCa.c
|
|
dbCore_SRCS += dbCaTest.c
|
|
dbCore_SRCS += initHooks.c
|
|
dbCore_SRCS += cvtBpt.c
|
|
dbCore_SRCS += dbContext.cpp
|
|
dbCore_SRCS += dbChannelIO.cpp
|
|
dbCore_SRCS += dbSubscriptionIO.cpp
|
|
dbCore_SRCS += dbPutNotifyBlocker.cpp
|
|
dbCore_SRCS += dbContextReadNotifyCache.cpp
|
|
dbCore_SRCS += templateInstances.cpp
|
|
dbCore_SRCS += dbIocRegister.c
|
|
dbCore_SRCS += chfPlugin.c
|
|
dbCore_SRCS += dbState.c
|
|
|