This repository was archived by the owner on Sep 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadl2uiAll
More file actions
executable file
·111 lines (108 loc) · 2.14 KB
/
Copy pathadl2uiAll
File metadata and controls
executable file
·111 lines (108 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/csh -f
unalias rm
unalias cp
unalias mv
setenv SUPPORT /APSshare/epics/synApps_5_6/support
setenv EPICS_APP /APSshare/epics/synApps_5_6/support/xxx-5-6
setenv EPICS_APP_ADL_DIR ${EPICS_APP}/xxxApp/op/adl
set output = `perl $EPICS_APP/release.pl $EPICS_APP`
$output
if ( ${?AREA_DETECTOR} ) then
cd ${AREA_DETECTOR}/ADApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?ASYN} ) then
cd ${ASYN}/opi
ln -s medm adl
${SUPPORT}/adlDir2uiDir
mv ui caqtdm
rm adl
endif
if ( ${?AUTOSAVE} ) then
cd ${AUTOSAVE}/asApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?BUSY} ) then
cd ${BUSY}/busyApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?CALC} ) then
cd ${CALC}/calcApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?CAMAC} ) then
cd ${CAMAC}/camacApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?DAC128V} ) then
cd ${DAC128V}/dac128VApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?DELAYGEN} ) then
cd ${DELAYGEN}/delaygenApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?DEVIOCSTATS} ) then
cd ${DEVIOCSTATS}/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?DXP} ) then
cd ${DXP}/dxpApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?IP} ) then
cd ${IP}/ipApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?IP330} ) then
cd ${IP330}/ip330App/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?IPUNIDIG} ) then
cd ${IPUNIDIG}/ipUnidigApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?LOVE} ) then
cd ${LOVE}/loveApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?MCA} ) then
cd ${MCA}/mcaApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?MODBUS} ) then
cd ${MODBUS}/modbusApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?MOTOR} ) then
cd ${MOTOR}/motorApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?OPTICS} ) then
cd ${OPTICS}/opticsApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?QUADEM} ) then
cd ${QUADEM}/quadEMApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?SOFTGLUE} ) then
cd ${SOFTGLUE}/softGlueApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?SSCAN} ) then
cd ${SSCAN}/sscanApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?STD} ) then
cd ${STD}/stdApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?VAC} ) then
cd ${VAC}/vacApp/op
${SUPPORT}/adlDir2uiDir
endif
if ( ${?VME} ) then
cd ${VME}/vmeApp/op
${SUPPORT}/adlDir2uiDir
endif