From 20d1f64b28e4ac5dd97d63a9bdf309ad63791e5d Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Wed, 14 Jun 2000 16:30:31 +0000 Subject: [PATCH] Use new LIBOBJS macro. --- motorApp/OmsSrc/Makefile.Vx | 4 +--- motorApp/SoftMotorSrc/Makefile.Vx | 2 +- motorApp/V544Src/Makefile.Vx | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/motorApp/OmsSrc/Makefile.Vx b/motorApp/OmsSrc/Makefile.Vx index f6fe3e4b..8fa432ec 100644 --- a/motorApp/OmsSrc/Makefile.Vx +++ b/motorApp/OmsSrc/Makefile.Vx @@ -10,19 +10,17 @@ include $(TOP)/config/CONFIG_APP # The following is required for all OMS device drivers. SRCS.c += ../devOmsCom.c -LIBOBJS += devOmsCom.o INSTALLS += devOmsCom.o # The following is required for the OMS VME8/44 (i.e., devOMS) device driver. SRCS.c += ../devOms.c ../drvOms.c -LIBOBJS += devOms.o drvOms.o INSTALLS += devOms.o drvOms.o # The following is required for the OMS VME58 (i.e., devOms58) device driver. SRCS.c += ../devOms58.c ../drvOms58.c -LIBOBJS += devOms58.o drvOms58.o INSTALLS += devOms58.o drvOms58.o +LIBOBJS = $(SRCS.c:../%.c=%.o) LIBNAME = omsLib #Note that the command line that builds the diff --git a/motorApp/SoftMotorSrc/Makefile.Vx b/motorApp/SoftMotorSrc/Makefile.Vx index c4ac03b9..3dd78b0f 100644 --- a/motorApp/SoftMotorSrc/Makefile.Vx +++ b/motorApp/SoftMotorSrc/Makefile.Vx @@ -6,8 +6,8 @@ include $(TOP)/config/CONFIG_APP # The following is required for the Soft Channel (i.e., MotorSoft) device driver. SRCS.c += ../devSoft.c ../devSoftAux.c -LIBOBJS += devSoft.o devSoftAux.o +LIBOBJS = $(SRCS.c:../%.c=%.o) LIBNAME = softMotorLib #Note that the command line that builds the diff --git a/motorApp/V544Src/Makefile.Vx b/motorApp/V544Src/Makefile.Vx index 8561c45a..b59e7100 100644 --- a/motorApp/V544Src/Makefile.Vx +++ b/motorApp/V544Src/Makefile.Vx @@ -10,8 +10,8 @@ include $(TOP)/config/CONFIG_APP # The following is required for the Highland V544 (i.e., V544) device driver. SRCS.c += ../devV544.c ../drvV544.c -LIBOBJS += devV544.o drvV544.o +LIBOBJS = $(SRCS.c:../%.c=%.o) LIBNAME = V544Lib #Note that the command line that builds the