Renaming NoMPF/WithMPF NoAsyn/WithAsyn.

This commit is contained in:
Ron Sluiter
2007-11-28 17:52:47 +00:00
parent 99f5f3de36
commit f84d5a6d43
5 changed files with 21 additions and 54 deletions
+20 -20
View File
@@ -5,31 +5,31 @@ include $(TOP)/configure/CONFIG
# ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================
DBD += NoMPF.dbd
DBD += NoMPFVx.dbd
DBD += NoAsyn.dbd
DBD += NoAsynVx.dbd
PROD_IOC_DEFAULT = NoMPF
PROD_IOC_vxWorks = NoMPFVx
PROD_IOC_DEFAULT = NoAsyn
PROD_IOC_vxWorks = NoAsynVx
NoMPF_SRCS += NoMPF_registerRecordDeviceDriver.cpp
NoMPF_SRCS_DEFAULT += NoMPFMain.cpp
#!NoMPF_LIBS += MXmotor
#!NoMPF_LIBS += softMotor
#!NoMPF_LIBS += oms
NoMPF_LIBS += motor
NoMPF_LIBS += asyn
NoMPF_LIBS += $(EPICS_BASE_IOC_LIBS)
NoAsyn_SRCS += NoAsyn_registerRecordDeviceDriver.cpp
NoAsyn_SRCS_DEFAULT += NoAsynMain.cpp
#!NoAsyn_LIBS += MXmotor
#!NoAsyn_LIBS += softMotor
#!NoAsyn_LIBS += oms
NoAsyn_LIBS += motor
NoAsyn_LIBS += asyn
NoAsyn_LIBS += $(EPICS_BASE_IOC_LIBS)
NoMPFVx_SRCS += NoMPFVx_registerRecordDeviceDriver.cpp
#!NoMPFVx_LIBS += softMotor
#!NoMPFVx_LIBS += oms
#!NoMPFVx_LIBS += DeltaTau
NoMPFVx_LIBS += motor
NoMPFVx_LIBS += asyn
NoAsynVx_SRCS += NoAsynVx_registerRecordDeviceDriver.cpp
#!NoAsynVx_LIBS += softMotor
#!NoAsynVx_LIBS += oms
#!NoAsynVx_LIBS += DeltaTau
NoAsynVx_LIBS += motor
NoAsynVx_LIBS += asyn
NoMPFVx_OBJS += $(EPICS_BASE_BIN)/vxComLibrary
NoMPFVx_LIBS += $(EPICS_BASE_IOC_LIBS)
NoAsynVx_OBJS += $(EPICS_BASE_BIN)/vxComLibrary
NoAsynVx_LIBS += $(EPICS_BASE_IOC_LIBS)
#===========================
+1 -1
View File
@@ -1,4 +1,4 @@
/* NoMPFMain.c */
/* NoAsynMain.c */
/* Author: Ron Sluiter */
#include <stddef.h>
-6
View File
@@ -1,6 +0,0 @@
include "base.dbd"
include "asyn.dbd"
include "motorSupport.dbd"
#!include "devSoftMotor.dbd"
#!include "devOms.dbd"
#!include "devMXmotor.dbd"
-21
View File
@@ -1,21 +0,0 @@
/* NoMPFMain.c */
/* Author: Ron Sluiter */
#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include "epicsThread.h"
#include "iocsh.h"
int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
epicsThreadSleep(.2);
}
iocsh(NULL);
return(0);
}
-6
View File
@@ -1,6 +0,0 @@
include "base.dbd"
include "asyn.dbd"
include "motorSupport.dbd"
#!include "devOms.dbd"
#!include "devDeltaTau.dbd"
#!include "devSoftMotor.dbd"