source: tools/Scripts/updateall@ 107

Last change on this file since 107 was 76, checked in by daqct3, 15 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
5pushd ~/fact_repos.svn >/dev/null
6
7echo -n "Hit enter to update the repository"
8read
9svn update
10
11echo -n "Hit enter to make drsdaq"
12read
13make -C drsdaq
14
15echo -n "Hit enter to make hvcontrol"
16read
17make -C hvcontrol
18
19echo -n "Hit enter to make ddd"
20read
21cd tools/ddd
22qmake
23make
24cd ../..
25
26echo -n "Hit enter to make inspectrawfile"
27read
28make -C tools/inspectrawfile
29
30echo -n "Hit enter to make SocketClient"
31read
32make -C tools/SocketClient
33
34popd >/dev/null
Note: See TracBrowser for help on using the repository browser.