Moved Hideos and MPF code to CommSrc directory.

This commit is contained in:
Ron Sluiter
2000-04-18 20:42:42 +00:00
parent 65e79469c3
commit 7340d25c66
2 changed files with 3 additions and 24 deletions
-1
View File
@@ -8,7 +8,6 @@ RECTYPES += motorRecord.h
INC += motor.h motordevCom.h motordrvCom.h
INC += motordrvComCode.h
INC += gpibIO.h serialIO.h
include $(TOP)/config/RULES.Host
#----------------------------------------
+3 -23
View File
@@ -4,31 +4,11 @@ include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
# The following is required for device drivers that require serial
# or GPIB communication support via HIDEOS. In addition, the
# HIDEOS directory must be defined in the config/RELEASE file.
USR_CXXFLAGS += -DOS_EQ_VXWORKS
SRCS.c += ../gpibIO.c
SRCS.cc += ../serialIO.cc
HIDEOSLIBOBJS = gpibIO.o serialIO.o
# The following is required for device drivers that require serial
# or GPIB communication support via MPF. In addition, the
# MPF directory must be defined in the config/RELEASE file.
MPFLIBOBJS = serialIOMPF.o
SRCS.cc += ../serialIOMPF.cc
# The following is required for all motor record configurations.
# The following are required for all motor record configurations.
SRCS.c += ../motorRecord.c ../motordevCom.c ../motordrvCom.c
MOTORLIBOBJS = motorRecord.o motordevCom.o motordrvCom.o
LIBOBJS = motorRecord.o motordevCom.o motordrvCom.o
motorLib_hideos: $(MOTORLIBOBJS) $(HIDEOSLIBOBJS)
$(LINK.c) $@ $(MOTORLIBOBJS) $(HIDEOSLIBOBJS)
motorLib_mpf: $(MOTORLIBOBJS) $(MPFLIBOBJS)
$(LINK.c) $@ $(MOTORLIBOBJS) $(MPFLIBOBJS)
INSTALLS += motorLib_hideos motorLib_mpf
LIBNAME = motorLib
#Note that the command line that builds the
#library $(LIBNAME) may be HUGE (>3kB)