|
Last change
on this file since 76 was 76, checked in by daqct3, 16 years ago |
|
Scripts for starting DAQ-related programs
|
-
Property svn:executable
set to
*
|
|
File size:
529 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
|
|---|
| 14 |
|
|---|
| 15 | echo -n "Hit enter to make hvcontrol"
|
|---|
| 16 | read
|
|---|
| 17 | make -C hvcontrol
|
|---|
| 18 |
|
|---|
| 19 | echo -n "Hit enter to make ddd"
|
|---|
| 20 | read
|
|---|
| 21 | cd tools/ddd
|
|---|
| 22 | qmake
|
|---|
| 23 | make
|
|---|
| 24 | cd ../..
|
|---|
| 25 |
|
|---|
| 26 | echo -n "Hit enter to make inspectrawfile"
|
|---|
| 27 | read
|
|---|
| 28 | make -C tools/inspectrawfile
|
|---|
| 29 |
|
|---|
| 30 | echo -n "Hit enter to make SocketClient"
|
|---|
| 31 | read
|
|---|
| 32 | make -C tools/SocketClient
|
|---|
| 33 |
|
|---|
| 34 | popd >/dev/null
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.