Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ifeq ($(T_A),linuxRT-x86)
    MyTest_LIBS += drvMrf
endif

For a PMC EVR230 or PCI-e EVR300 that is installed in your system, the above is all you need.

To add support for PCI-express EVR300, also add the following lines to MyTestApp/src/Makefile:

MyTest_DBD += drvUioPciGen.dbd 

 MyTest_DBD += devBusMapped.dbd 

 MyTest_DBD += epicspci.dbd

.....

IPCTests_LIBS += drvUioPciGen

IPCTests_LIBS += devBusMapped

IPCTests_LIBS += epicspci

Replace the macros in the EPICS database files, or add more databases and modify MyTestApp/Db/Makefile as needed. 

(i) Now 'make' your application from the top level directory $(TOP) to ensure your changes to  RELEASE files are good:

...