more work on examples; documentation is only changed up to exampleServer

This commit is contained in:
Marty Kraimer
2014-02-06 16:46:47 -05:00
parent 94bd84211b
commit 9a798bc05a
81 changed files with 2361 additions and 605 deletions

View File

@@ -9,17 +9,26 @@ include $(TOP)/configure/CONFIG
# Build an IOC support library
#
PROD_HOST += exampleServerMain
exampleServerMain_SRCS += exampleServerMain.cpp
exampleServerMain_LIBS += Com
exampleServerMain_LIBS += pvData
exampleServerMain_LIBS += pvAccess
exampleServerMain_LIBS += pvDatabase
exampleServerMain_LIBS += exampleServer
DBD += exampleServer.dbd
INC += exampleServer.h
LIBRARY_IOC += exampleServerSupport
exampleServerSupport_SRCS += exampleServer.cpp
exampleServerSupport_SRCS += exampleServerRegister.cpp
exampleServerSupport_LIBS += pvData
exampleServerSupport_LIBS += pvAccess
exampleServerSupport_LIBS += pvDatabase
exampleServerSupport_LIBS += $(EPICS_BASE_IOC_LIBS)
LIBRARY_IOC += exampleServer
exampleServer_SRCS += exampleServer.cpp
exampleServer_SRCS += exampleServerRegister.cpp
exampleServer_LIBS += pvData
exampleServer_LIBS += pvAccess
exampleServer_LIBS += pvDatabase
exampleServer_LIBS += $(EPICS_BASE_IOC_LIBS)
#===========================