Last change
on this file since 7402 was 119, checked in by daqct3, 15 years ago |
Updates to scripts
|
-
Property svn:executable
set to
*
|
File size:
775 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # Script to update the fact repository and make all programs
|
---|
4 |
|
---|
5 | pushd ~/fact_repos.svn >/dev/null
|
---|
6 |
|
---|
7 | echo -n "Hit enter to update the repository"
|
---|
8 | read
|
---|
9 | svn update
|
---|
10 |
|
---|
11 | echo -n "Hit enter to make drsdaq"
|
---|
12 | read
|
---|
13 | make -C drsdaq clean
|
---|
14 | make -C drsdaq
|
---|
15 |
|
---|
16 | echo -n "Hit enter to make hvcontrol"
|
---|
17 | read
|
---|
18 | make -C hvcontrol clean
|
---|
19 | make -C hvcontrol
|
---|
20 |
|
---|
21 | echo -n "Hit enter to make ddd"
|
---|
22 | read
|
---|
23 | cd tools/ddd
|
---|
24 | make clean
|
---|
25 | qmake
|
---|
26 | make
|
---|
27 | cd ../..
|
---|
28 |
|
---|
29 | echo -n "Hit enter to make inspectrawfile"
|
---|
30 | read
|
---|
31 | make -C tools/inspectrawfile clean
|
---|
32 | make -C tools/inspectrawfile
|
---|
33 |
|
---|
34 | echo -n "Hit enter to make SocketClient"
|
---|
35 | read
|
---|
36 | make -C tools/SocketClient clean
|
---|
37 | make -C tools/SocketClient
|
---|
38 |
|
---|
39 | echo -n "Hit enter to make SkyQualityMonitor"
|
---|
40 | read
|
---|
41 | make -C tools/SkyQualityMonitor clean
|
---|
42 | make -C tools/SkyQualityMonitor
|
---|
43 |
|
---|
44 | popd >/dev/null
|
---|
Note:
See
TracBrowser
for help on using the repository browser.