pg9520/pg9520App/src/Makefile
changeset 1 0ba93e52269a
equal deleted inserted replaced
0:be4f3ba220be 1:0ba93e52269a
       
     1 TOP=../..
       
     2 
       
     3 include $(TOP)/configure/CONFIG
       
     4 #----------------------------------------
       
     5 #  ADD MACRO DEFINITIONS AFTER THIS LINE
       
     6 #=============================
       
     7 
       
     8 #=============================
       
     9 # Build the IOC application
       
    10 
       
    11 PROD_IOC = pg9520
       
    12 # pg9520.dbd will be created and installed
       
    13 DBD += pg9520.dbd
       
    14 
       
    15 # pg9520.dbd will be made up from these files:
       
    16 pg9520_DBD += base.dbd
       
    17 
       
    18 # Include dbd files from all support applications:
       
    19 #pg9520_DBD += xxx.dbd
       
    20 #uh
       
    21 pg9520_DBD += drvAsynIPPort.dbd
       
    22 pg9520_DBD += iocshGlobalCommands.dbd
       
    23 pg9520_DBD += stream.dbd
       
    24 
       
    25 # Add all the support libraries needed by this IOC
       
    26 #pg9520_LIBS += xxx
       
    27 #uh
       
    28 pg9520_LIBS += asyn
       
    29 pg9520_LIBS += stream
       
    30 
       
    31 # pg9520_registerRecordDeviceDriver.cpp derives from pg9520.dbd
       
    32 pg9520_SRCS += pg9520_registerRecordDeviceDriver.cpp
       
    33 
       
    34 # Build the main IOC entry point on workstation OSs.
       
    35 pg9520_SRCS_DEFAULT += pg9520Main.cpp
       
    36 pg9520_SRCS_vxWorks += -nil-
       
    37 
       
    38 # Add support from base/src/vxWorks if needed
       
    39 #pg9520_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
       
    40 
       
    41 # Finally link to the EPICS Base libraries
       
    42 pg9520_LIBS += $(EPICS_BASE_IOC_LIBS)
       
    43 
       
    44 #===========================
       
    45 
       
    46 include $(TOP)/configure/RULES
       
    47 #----------------------------------------
       
    48 #  ADD RULES AFTER THIS LINE
       
    49