Skip to content

Commit

Permalink
Enable building of pvtools to all except vxWorks, RTEMS and iOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Slepicka authored and mdavidsaver committed Jan 27, 2021
1 parent 2702e60 commit e2b733a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions pvtoolsSrc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,37 @@ include $(TOP)/configure/CONFIG
USR_CPPFLAGS += -I$(TOP)/src/utils
USR_CPPFLAGS += -I$(TOP)/src/remote

PROD_HOST += pvget
PROD_DEFAULT += pvget
pvget_SRCS += pvget.cpp
pvget_SRCS += pvutils.cpp

PROD_HOST += pvmonitor
PROD_DEFAULT += pvmonitor
pvmonitor_SRCS += pvmonitor.cpp
pvmonitor_SRCS += pvutils.cpp

PROD_HOST += pvput
PROD_DEFAULT += pvput
pvput_SRCS += pvput.cpp
pvput_SRCS += pvutils.cpp

PROD_HOST += pvcall
PROD_DEFAULT += pvcall
pvcall_SRCS += pvcall.cpp
pvcall_SRCS += pvutils.cpp

PROD_HOST += pvinfo
PROD_DEFAULT += pvinfo
pvinfo_SRCS += pvinfo.cpp
pvinfo_SRCS += pvutils.cpp

PROD_HOST += pvlist
PROD_DEFAULT += pvlist
pvlist_SRCS += pvlist.cpp

PROD_LIBS += pvAccessCA pvAccess pvData ca Com

PROD_SYS_LIBS_WIN32 += netapi32 ws2_32

PROD_vxWorks = -nil-
PROD_RTEMS = -nil-
PROD_iOS = -nil-

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

0 comments on commit e2b733a

Please sign in to comment.