54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
#*************************************************************************
|
|
# Copyright (c) 2010 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 the file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
TOP=../../../..
|
|
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
PROD_LIBS = dbCore ca Com
|
|
|
|
TESTPROD_HOST += callbackTest
|
|
callbackTest_SRCS += callbackTest.c
|
|
PROD_vxWorks += callbackTest
|
|
TESTS += callbackTest
|
|
|
|
# When we add more test programs here, this must become a vxTestHarness
|
|
TESTSPEC_vxWorks = callbackTest.munch; callbackTest
|
|
|
|
DBDINC += xRecord
|
|
|
|
TESTPROD_HOST += dbChannelTest
|
|
dbChannelTest_SRCS += dbChannelTest.c
|
|
dbChannelTest_SRCS += xRecord_registerRecordDeviceDriver.cpp
|
|
dbChannelTest_LIBS += dbCore
|
|
OBJS_IOC_vxWorks += dbChannelTest
|
|
TESTS += dbChannelTest
|
|
|
|
TESTPROD_HOST += chfPluginTest
|
|
chfPluginTest_SRCS += chfPluginTest.c
|
|
chfPluginTest_LIBS += dbCore
|
|
OBJS_IOC_vxWorks += chfPluginTest
|
|
TESTS += chfPluginTest
|
|
|
|
TESTPROD_HOST += arrShorthandTest
|
|
arrShorthandTest_SRCS += arrShorthandTest.c
|
|
arrShorthandTest_LIBS += dbCore
|
|
OBJS_IOC_vxWorks += arrShorthandTest
|
|
TESTS += arrShorthandTest
|
|
|
|
TESTPROD_HOST += dbStateTest
|
|
dbStateTest_SRCS += dbStateTest.c
|
|
dbStateTest_LIBS += dbCore
|
|
OBJS_IOC_vxWorks += dbStateTest
|
|
TESTS += dbStateTest
|
|
|
|
TESTSCRIPTS_HOST += $(TESTS:%=%.t)
|
|
|
|
include $(TOP)/configure/RULES
|
|
|