R3.14.x compatible.

This commit is contained in:
Ron Sluiter
2002-10-17 17:57:50 +00:00
parent c3ca13f40c
commit f068364fca
8 changed files with 47 additions and 117 deletions
-14
View File
@@ -1,14 +0,0 @@
# Makefile.Host
TOP = ../../..
include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
RECTYPES += motorRecord.h
INC += motor.h motordevCom.h motordrvCom.h
INC += motordrvComCode.h
include $(TOP)/config/RULES.Host
#----------------------------------------
# ADD RULES AFTER THIS LINE
-24
View File
@@ -1,24 +0,0 @@
# Makefile.Vx
TOP = ../../..
include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
# The following are used for debugging messages.
#USR_CFLAGS += -DDEBUG
#USR_CXXFLAGS += -DDEBUG
#USR_CFLAGS += -DDMR_SOFTMOTOR_MODS
# The following are required for all motor record configurations.
SRCS.c += ../motorRecord.c ../motordevCom.c ../motordrvCom.c
LIBOBJS = $(SRCS.c:../%.c=%.o)
LIBNAME = motorLib
#Note that the command line that builds the
#library $(LIBNAME) may be HUGE (>3kB)
#
include $(TOP)/config/RULES.Vx
#----------------------------------------
# ADD RULES AFTER THIS LINE
+26 -3
View File
@@ -1,3 +1,26 @@
TOP=../..
include $(TOP)/config/CONFIG_APP
include $(TOP)/config/RULES_ARCHS
# Makefile
TOP = ../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
# The following are used for debugging messages.
USR_CFLAGS += -DDEBUG
USR_CXXFLAGS += -DDEBUG
DBD += devOms.dbd
LIBRARY_IOC_vxWorks = oms
# The following is required for all OMS device drivers.
SRCS += devOmsCom.cc
# The following is required for the OMS VME8/44 (i.e., devOMS) device driver.
SRCS += devOms.cc drvOms.cc
# The following is required for the OMS VME58 (i.e., devOms58) device driver.
SRCS += devOms58.cc drvOms58.cc
include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE
-11
View File
@@ -1,11 +0,0 @@
# Makefile.Host
TOP = ../../..
include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
DBDINSTALL += devOms.dbd
include $(TOP)/config/RULES.Host
#----------------------------------------
# ADD RULES AFTER THIS LINE
-31
View File
@@ -1,31 +0,0 @@
# Makefile.Vx
TOP = ../../..
include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
# The following are used for debugging messages.
#USR_CFLAGS += -DDEBUG
#USR_CXXFLAGS += -DDEBUG
# The following is required for all OMS device drivers.
SRCS.c += ../devOmsCom.c
INSTALLS += devOmsCom.o
# The following is required for the OMS VME8/44 (i.e., devOMS) device driver.
SRCS.c += ../devOms.c ../drvOms.c
INSTALLS += devOms.o drvOms.o
# The following is required for the OMS VME58 (i.e., devOms58) device driver.
SRCS.c += ../devOms58.c ../drvOms58.c
INSTALLS += devOms58.o drvOms58.o
LIBOBJS = $(SRCS.c:../%.c=%.o)
LIBNAME = omsLib
#Note that the command line that builds the
#library $(LIBNAME) may be HUGE (>3kB)
#
include $(TOP)/config/RULES.Vx
#----------------------------------------
# ADD RULES AFTER THIS LINE
+21 -3
View File
@@ -1,3 +1,21 @@
TOP=../..
include $(TOP)/config/CONFIG_APP
include $(TOP)/config/RULES_ARCHS
# Makefile
TOP = ../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
# The following are used for debugging messages.
USR_CFLAGS += -DDEBUG
USR_CXXFLAGS += -DDEBUG
DBD += devSoftMotor.dbd
LIBRARY_IOC = softMotor
# The following is required for the Soft Channel (i.e., MotorSoft) device driver.
SRCS += devSoft.cc devSoftAux.cc
include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE
-11
View File
@@ -1,11 +0,0 @@
# Makefile.Host
TOP = ../../..
include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
DBDINSTALL += devSoftMotor.dbd
include $(TOP)/config/RULES.Host
#----------------------------------------
# ADD RULES AFTER THIS LINE
-20
View File
@@ -1,20 +0,0 @@
# Makefile.Vx
TOP = ../../..
include $(TOP)/config/CONFIG_APP
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
#USR_CFLAGS += -DDMR_SOFTMOTOR_MODS
# The following is required for the Soft Channel (i.e., MotorSoft) device driver.
SRCS.c += ../devSoft.c ../devSoftAux.c
LIBOBJS = $(SRCS.c:../%.c=%.o)
LIBNAME = softMotorLib
#Note that the command line that builds the
#library $(LIBNAME) may be HUGE (>3kB)
#
include $(TOP)/config/RULES.Vx
#----------------------------------------
# ADD RULES AFTER THIS LINE