Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions AG33220A/AG33220A-IOC-02App/Db/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE

#----------------------------------------------------
# Create and install (or just install) into <top>/db
# databases, templates, substitutions like this
#DB += xxx.db

#----------------------------------------------------
# If <anyname>.db template is not named <anyname>*.template add
# <anyname>_template = <templatename>

include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE

9 changes: 9 additions & 0 deletions AG33220A/AG33220A-IOC-02App/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *protocol*))
include $(TOP)/configure/RULES_DIRS

23 changes: 23 additions & 0 deletions AG33220A/AG33220A-IOC-02App/src/AG33220A-IOC-02Main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* AG33220A-IOC-02Main.cpp */
/* Author: Marty Kraimer Date: 17MAR2000 */

#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>

#include "epicsExit.h"
#include "epicsThread.h"
#include "iocsh.h"

int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
epicsThreadSleep(.2);
}
iocsh(NULL);
epicsExit(0);
return(0);
}
9 changes: 9 additions & 0 deletions AG33220A/AG33220A-IOC-02App/src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP=../..
# This file should do very little - it's purpose is to set the APPNAME and then load build.mak

# this definition is used in build.mak
APPNAME=AG33220A-IOC-02

# If we are ###-IOC-01 leave this as is, if we are ###-IOC-02 or higher change to ###-IOC-01 and delete build.mak from this directory
# there should only be a single build.mak for all IOCs of a given family and it is located in the ###-IOC-01 directory
include $(TOP)/AG33220A-IOC-01App/src/build.mak
6 changes: 6 additions & 0 deletions AG33220A/iocBoot/iocAG33220A-IOC-02/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TOP = ../..
include $(TOP)/configure/CONFIG
#ARCH = windows-x64-debug
ARCH = $(EPICS_HOST_ARCH)
TARGETS = envPaths dllPath.bat relPaths.sh runIOC.bat runIOC.sh
include $(TOP)/configure/RULES.ioc
18 changes: 18 additions & 0 deletions AG33220A/iocBoot/iocAG33220A-IOC-02/st.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!../../bin/windows-x64-debug/AG33220A-IOC-02

## You may have to change AG33220A-IOC-02 to something else
## everywhere it appears in this file

# Increase this if you get <<TRUNCATED>> or discarded messages warnings in your errlog output
errlogInit2(65536, 256)

< envPaths

cd "${TOP}"

## Register all support components
dbLoadDatabase "dbd/AG33220A-IOC-02.dbd"
AG33220A_IOC_02_registerRecordDeviceDriver pdbbase

## calling common command file in ioc 01 boot dir
< ${TOP}/iocBoot/iocAG33220A-IOC-01/st-common.cmd
18 changes: 18 additions & 0 deletions AG53220A/AG53220A-IOC-02App/Db/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE

#----------------------------------------------------
# Create and install (or just install) into <top>/db
# databases, templates, substitutions like this
#DB += xxx.db

#----------------------------------------------------
# If <anyname>.db template is not named <anyname>*.template add
# <anyname>_template = <templatename>

include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE

9 changes: 9 additions & 0 deletions AG53220A/AG53220A-IOC-02App/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *protocol*))
include $(TOP)/configure/RULES_DIRS

23 changes: 23 additions & 0 deletions AG53220A/AG53220A-IOC-02App/src/AG53220A-IOC-02Main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* AG53220A-IOC-02Main.cpp */
/* Author: Marty Kraimer Date: 17MAR2000 */

#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>

#include "epicsExit.h"
#include "epicsThread.h"
#include "iocsh.h"

int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
epicsThreadSleep(.2);
}
iocsh(NULL);
epicsExit(0);
return(0);
}
9 changes: 9 additions & 0 deletions AG53220A/AG53220A-IOC-02App/src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP=../..
# This file should do very little - it's purpose is to set the APPNAME and then load build.mak

# this definition is used in build.mak
APPNAME=AG53220A-IOC-02

# If we are ###-IOC-01 leave this as is, if we are ###-IOC-02 or higher change to ###-IOC-01 and delete build.mak from this directory
# there should only be a single build.mak for all IOCs of a given family and it is located in the ###-IOC-01 directory
include $(TOP)/AG53220A-IOC-01App/src/build.mak
6 changes: 6 additions & 0 deletions AG53220A/iocBoot/iocAG53220A-IOC-02/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TOP = ../..
include $(TOP)/configure/CONFIG
#ARCH = windows-x64-debug
ARCH = $(EPICS_HOST_ARCH)
TARGETS = envPaths dllPath.bat relPaths.sh runIOC.bat runIOC.sh
include $(TOP)/configure/RULES.ioc
18 changes: 18 additions & 0 deletions AG53220A/iocBoot/iocAG53220A-IOC-02/st.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!../../bin/windows-x64-debug/AG53220A-IOC-02

## You may have to change AG53220A-IOC-02 to something else
## everywhere it appears in this file

# Increase this if you get <<TRUNCATED>> or discarded messages warnings in your errlog output
errlogInit2(65536, 256)

< envPaths

cd "${TOP}"

## Register all support components
dbLoadDatabase "dbd/AG53220A-IOC-02.dbd"
AG53220A_IOC_02_registerRecordDeviceDriver pdbbase

## calling common command file in ioc 01 boot dir
< ${TOP}/iocBoot/iocAG53220A-IOC-01/st-common.cmd
18 changes: 18 additions & 0 deletions CAENMCA/CAENMCA-IOC-02App/Db/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE

#----------------------------------------------------
# Create and install (or just install) into <top>/db
# databases, templates, substitutions like this
#DB += xxx.db

#----------------------------------------------------
# If <anyname>.db template is not named <anyname>*.template add
# <anyname>_template = <templatename>

include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE

9 changes: 9 additions & 0 deletions CAENMCA/CAENMCA-IOC-02App/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *protocol*))
include $(TOP)/configure/RULES_DIRS

23 changes: 23 additions & 0 deletions CAENMCA/CAENMCA-IOC-02App/src/CAENMCA-IOC-02Main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* CAENMCA-IOC-02Main.cpp */
/* Author: Marty Kraimer Date: 17MAR2000 */

#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>

#include "epicsExit.h"
#include "epicsThread.h"
#include "iocsh.h"

int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
epicsThreadSleep(.2);
}
iocsh(NULL);
epicsExit(0);
return(0);
}
9 changes: 9 additions & 0 deletions CAENMCA/CAENMCA-IOC-02App/src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP=../..
# This file should do very little - it's purpose is to set the APPNAME and then load build.mak

# this definition is used in build.mak
APPNAME=CAENMCA-IOC-02

# If we are ###-IOC-01 leave this as is, if we are ###-IOC-02 or higher change to ###-IOC-01 and delete build.mak from this directory
# there should only be a single build.mak for all IOCs of a given family and it is located in the ###-IOC-01 directory
include $(TOP)/CAENMCA-IOC-01App/src/build.mak
6 changes: 6 additions & 0 deletions CAENMCA/iocBoot/iocCAENMCA-IOC-02/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TOP = ../..
include $(TOP)/configure/CONFIG
#ARCH = windows-x64-debug
ARCH = $(EPICS_HOST_ARCH)
TARGETS = envPaths dllPath.bat relPaths.sh runIOC.bat runIOC.sh
include $(TOP)/configure/RULES.ioc
18 changes: 18 additions & 0 deletions CAENMCA/iocBoot/iocCAENMCA-IOC-02/st.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!../../bin/windows-x64-debug/CAENMCA-IOC-02

## You may have to change CAENMCA-IOC-02 to something else
## everywhere it appears in this file

# Increase this if you get <<TRUNCATED>> or discarded messages warnings in your errlog output
errlogInit2(65536, 256)

< envPaths

cd "${TOP}"

## Register all support components
dbLoadDatabase "dbd/CAENMCA-IOC-02.dbd"
CAENMCA_IOC_02_registerRecordDeviceDriver pdbbase

## calling common command file in ioc 01 boot dir
< ${TOP}/iocBoot/iocCAENMCA-IOC-01/st-common.cmd
18 changes: 18 additions & 0 deletions CAENV895/CAENV895-IOC-02App/Db/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE

#----------------------------------------------------
# Create and install (or just install) into <top>/db
# databases, templates, substitutions like this
#DB += xxx.db

#----------------------------------------------------
# If <anyname>.db template is not named <anyname>*.template add
# <anyname>_template = <templatename>

include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE

9 changes: 9 additions & 0 deletions CAENV895/CAENV895-IOC-02App/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *protocol*))
include $(TOP)/configure/RULES_DIRS

23 changes: 23 additions & 0 deletions CAENV895/CAENV895-IOC-02App/src/CAENV895-IOC-02Main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* CAENV895-IOC-02Main.cpp */
/* Author: Marty Kraimer Date: 17MAR2000 */

#include <stddef.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <stdio.h>

#include "epicsExit.h"
#include "epicsThread.h"
#include "iocsh.h"

int main(int argc,char *argv[])
{
if(argc>=2) {
iocsh(argv[1]);
epicsThreadSleep(.2);
}
iocsh(NULL);
epicsExit(0);
return(0);
}
9 changes: 9 additions & 0 deletions CAENV895/CAENV895-IOC-02App/src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP=../..
# This file should do very little - it's purpose is to set the APPNAME and then load build.mak

# this definition is used in build.mak
APPNAME=CAENV895-IOC-02

# If we are ###-IOC-01 leave this as is, if we are ###-IOC-02 or higher change to ###-IOC-01 and delete build.mak from this directory
# there should only be a single build.mak for all IOCs of a given family and it is located in the ###-IOC-01 directory
include $(TOP)/CAENV895-IOC-01App/src/build.mak
6 changes: 6 additions & 0 deletions CAENV895/iocBoot/iocCAENV895-IOC-02/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TOP = ../..
include $(TOP)/configure/CONFIG
#ARCH = windows-x64-debug
ARCH = $(EPICS_HOST_ARCH)
TARGETS = envPaths dllPath.bat relPaths.sh runIOC.bat runIOC.sh
include $(TOP)/configure/RULES.ioc
18 changes: 18 additions & 0 deletions CAENV895/iocBoot/iocCAENV895-IOC-02/st.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!../../bin/windows-x64-debug/CAENV895-IOC-02

## You may have to change CAENV895-IOC-02 to something else
## everywhere it appears in this file

# Increase this if you get <<TRUNCATED>> or discarded messages warnings in your errlog output
errlogInit2(65536, 256)

< envPaths

cd "${TOP}"

## Register all support components
dbLoadDatabase "dbd/CAENV895-IOC-02.dbd"
CAENV895_IOC_02_registerRecordDeviceDriver pdbbase

## calling common command file in ioc 01 boot dir
< ${TOP}/iocBoot/ioc_01_APP_NAME_/st-common.cmd
18 changes: 18 additions & 0 deletions CONEXAGP/CONEXAGP-IOC-02App/Db/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
TOP=../..
include $(TOP)/configure/CONFIG
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE

#----------------------------------------------------
# Create and install (or just install) into <top>/db
# databases, templates, substitutions like this
#DB += xxx.db

#----------------------------------------------------
# If <anyname>.db template is not named <anyname>*.template add
# <anyname>_template = <templatename>

include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE

9 changes: 9 additions & 0 deletions CONEXAGP/CONEXAGP-IOC-02App/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Src*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *Db*))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *protocol*))
include $(TOP)/configure/RULES_DIRS

Loading