Renaming NoMPF/WithMPF NoAsyn/WithAsyn.

This commit is contained in:
Ron Sluiter
2007-11-28 18:10:29 +00:00
parent 1a6d3ce6fe
commit 0d40dafbcb
9 changed files with 2 additions and 202 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS += NoMPF
DIRS += NoAsyn
ifdef ASYN
DIRS += WithMPF
DIRS += WithAsyn
endif
include $(TOP)/configure/RULES_DIRS
-39
View File
@@ -1,39 +0,0 @@
# Makefile
TOP = ../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================
DBD += NoMPF.dbd
DBD += NoMPFVx.dbd
PROD_IOC_DEFAULT = NoMPF
PROD_IOC_vxWorks = NoMPFVx
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)
NoMPFVx_SRCS += NoMPFVx_registerRecordDeviceDriver.cpp
#!NoMPFVx_LIBS += softMotor
#!NoMPFVx_LIBS += oms
#!NoMPFVx_LIBS += DeltaTau
NoMPFVx_LIBS += motor
NoMPFVx_LIBS += asyn
NoMPFVx_OBJS += $(EPICS_BASE_BIN)/vxComLibrary
NoMPFVx_LIBS += $(EPICS_BASE_IOC_LIBS)
#===========================
include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE
-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"
-69
View File
@@ -1,69 +0,0 @@
# "#!" marks lines that can be uncommented.
# Choice either IPAC R2.5 and below, or, R2.6
# and above. The default is IPAC R2.6 and above.
# Makefile
TOP = ../..
include $(TOP)/configure/CONFIG
ifeq ($(OS_CLASS), vxWorks)
DBD += WithMPFVx.dbd
endif
DBD += WithMPF.dbd
PROD_IOC_DEFAULT = WithMPF
PROD_IOC_vxWorks = WithMPFVx
WithMPF_SRCS += WithMPF_registerRecordDeviceDriver.cpp
WithMPFVx_SRCS += WithMPFVx_registerRecordDeviceDriver.cpp
WithMPF_SRCS_DEFAULT += WithMPFMain.cpp
# Support from EPICS base
WithMPF_OBJS_vxWorks += $(EPICS_BASE_BIN)/vxComLibrary
# Support from IPAC R2.5 and below.
#!WithMPFVx_LDOBJS_vxWorks += $(IPAC_BIN)/ipacLib
#!WithMPFVx_OBJS_vxWorks += $(IPAC_BIN)/tyGSOctal
#!WithMPF_LIBS += oms
#!WithMPF_LIBS += Mclennan
#!WithMPF_LIBS += Micos
#!WithMPF_LIBS += MicroMo
#!WithMPF_LIBS += PI
#!WithMPF_LIBS += Acs
#!WithMPF_LIBS += Ims
#!WithMPF_LIBS += Newport
#!WithMPF_LIBS += softMotor
#!WithMPF_LIBS += motorSimSupport
#!WithMPF_LIBS += SmartMotor
#!WithMPF_LIBS += KohzuMotor
WithMPF_LIBS += motor
WithMPF_LIBS += asyn
# Needed for Newport SNL programs
#!WithMPF_LIBS += seq pv
WithMPF_LIBS += $(EPICS_BASE_IOC_LIBS)
#!WithMPFVx_LIBS += oms
#!WithMPFVx_LIBS += Mclennan
#!WithMPFVx_LIBS += Micos
#!WithMPFVx_LIBS += MicroMo
#!WithMPFVx_LIBS += PI
#!WithMPFVx_LIBS += Acs
#!WithMPFVx_LIBS += Ims
#!WithMPFVx_LIBS += Newport
#!WithMPFVx_LIBS += softMotor
#!WithMPFVx_LIBS += motorSimSupport
#!WithMPFVx_LIBS += SmartMotor
#!WithMPFVx_LIBS += KohzuMotor
WithMPFVx_LIBS += motor
# Support from IPAC R2.6 and above.
WithMPFVx_LIBS += Ipac TyGSOctal
WithMPFVx_LIBS += asyn
# Needed for Newport SNL programs
#!WithMPFVx_LIBS += seq pv
WithMPFVx_LIBS += $(EPICS_BASE_IOC_LIBS)
include $(TOP)/configure/RULES
-15
View File
@@ -1,15 +0,0 @@
include "base.dbd"
include "motorSupport.dbd"
include "drvAsynSerialPort.dbd"
#include "devAcsMotor.dbd"
#include "devImsMotor.dbd"
#include "devMclennanMotor.dbd"
#include "devMicos.dbd"
#include "devMicroMo.dbd"
#include "devNewport.dbd"
#include "devPIMotor.dbd"
#include "devOms.dbd"
#include "devSoftMotor.dbd"
#include "motorSimSupport.dbd"
#include "devSmartMotorMotor.dbd"
#include "devKohzuMotor.dbd"
-21
View File
@@ -1,21 +0,0 @@
/* WithMPFMain.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);
}
-23
View File
@@ -1,23 +0,0 @@
include "base.dbd"
include "motorSupport.dbd"
#include "devAcsMotor.dbd"
#include "devImsMotor.dbd"
#include "devMclennanMotor.dbd"
#include "devMicos.dbd"
#include "devMicroMo.dbd"
#include "devNewport.dbd"
#include "devPIMotor.dbd"
#include "devOms.dbd"
#include "devSoftMotor.dbd"
#include "motorSimSupport.dbd"
#include "devSmartMotorMotor.dbd"
#include "devKohzuMotor.dbd"
#include "drvAsynSerialPort.dbd"
#include "drvGsIP488.dbd"
# Only for IPAC R2.7 and above.
driver(drvIpac)
registrar(tvme200Registrar)
registrar(vipc616Registrar)
registrar(tyGSOctalRegistrar)