TOP=../..

include $(TOP)/configure/CONFIG
#----------------------------------------
#  ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================

#==================================================
# Build an IOC support library

LIBRARY_IOC += xxxSupport

# xxxRecord.h will be created from xxxRecord.dbd
DBDINC += xxxRecord
# install devXxxSoft.dbd into <top>/dbd
DBD += xxxSupport.dbd

# The following are compiled and added to the Support library
xxxSupport_SRCS += xxxRecord.c

xxxSupport_SRCS += devXxxSoft.c

xxxSupport_LIBS += $(EPICS_BASE_IOC_LIBS)

#=============================
# build an ioc application

PROD_IOC = train
# train.dbd will be created and installed
DBD += train.dbd

# train.dbd will be made up from these files:
train_DBD += base.dbd
train_DBD += xxxSupport.dbd

train_DBD += dbSubExample.dbd
train_DBD += trainHello.dbd

# <name>_registerRecordDeviceDriver.cpp will be created from <name>.dbd
train_SRCS += train_registerRecordDeviceDriver.cpp
train_SRCS_DEFAULT += trainMain.cpp
train_SRCS_vxWorks += -nil-

# Add locally compiled object code
train_SRCS += dbSubExample.c
train_SRCS += trainHello.c

# The following adds support from base/src/vxWorks
train_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary

train_LIBS += xxxSupport

# NOTE: To build SNL programs, SNCSEQ must be defined
# in the <top>/configure/RELEASE file

ifneq ($(SNCSEQ),)
    # This builds sncExample as a component of train
    train_SNCFLAGS += +r
#    train_DBD += sncExample.dbd
#    train_SRCS += sncExample.stt
    train_DBD += WFG_SRC.dbd
    train_SRCS += WFG_SRC.stt

    train_LIBS += seq pv


    # The following builds sncProgram as a standalone application
    PROD_HOST += sncProgram
    sncProgram_SNCFLAGS += +m
    sncProgram_SRCS += sncProgram.st
    sncProgram_LIBS += seq pv
    sncProgram_LIBS += $(EPICS_BASE_HOST_LIBS)
endif

train_LIBS += $(EPICS_BASE_IOC_LIBS)

#===========================

include $(TOP)/configure/RULES
#----------------------------------------
#  ADD RULES AFTER THIS LINE