24 lines
561 B
Makefile
24 lines
561 B
Makefile
TOP = ../..
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
EXAMPLESRC = $(TOP)/example/src/
|
|
|
|
LIBRARY_IOC += pvDatabaseExample
|
|
pvDatabaseExample_LIBS += $(EPICS_BASE_IOC_LIBS)
|
|
pvDatabaseExample_LIBS += Com pvData pvAccess pvDatabase
|
|
|
|
SRC_DIRS += $(EXAMPLESRC)/exampleCounter
|
|
INC += exampleCounter.h
|
|
|
|
SRC_DIRS += $(EXAMPLESRC)/exampleServer
|
|
INC+= exampleServerCreateRecords.h
|
|
LIBSRCS += exampleServerCreateRecords.cpp
|
|
|
|
SRC_DIRS += $(EXAMPLESRC)/examplePVADoubleArrayGet
|
|
INC+= examplePVADoubleArrayGet.h
|
|
LIBSRCS += examplePVADoubleArrayGet.cpp
|
|
|
|
|
|
include $(TOP)/configure/RULES
|
|
|