relocate weather ioc

This commit is contained in:
Michael Davidsaver
2013-12-08 12:58:54 -05:00
parent c88ebd5bee
commit 11e9de810c
4 changed files with 18 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,3 +9,4 @@ db
dbd dbd
python python
_build _build
envPaths

6
iocBoot/Makefile Normal file
View File

@ -0,0 +1,6 @@
TOP = ..
include $(TOP)/configure/CONFIG
DIRS += $(wildcard *ioc*)
DIRS += $(wildcard as*)
include $(CONFIG)/RULES_DIRS

View File

@ -0,0 +1,5 @@
TOP = ../..
include $(TOP)/configure/CONFIG
ARCH = linux-x86_64
TARGETS = envPaths
include $(TOP)/configure/RULES.ioc

View File

@ -1,8 +1,12 @@
#!./bin/linux-x86/softIocPy #!../../bin/linux-x86/softIocPy
< envPaths
cd("$(TOP)")
epicsEnvSet("http_proxy", "http://proxy:8888/") epicsEnvSet("http_proxy", "http://proxy:8888/")
epicsEnvSet("PYTHONPATH", "${PWD}/python") epicsEnvSet("PYTHONPATH", "${TOP}/python")
dbLoadDatabase("dbd/softIocPy.dbd") dbLoadDatabase("dbd/softIocPy.dbd")
softIocPy_registerRecordDeviceDriver(pdbbase) softIocPy_registerRecordDeviceDriver(pdbbase)