source: tools/Scripts/updateall@ 162

Last change on this file since 162 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
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 clean
14make -C drsdaq
15
16echo -n "Hit enter to make hvcontrol"
17read
18make -C hvcontrol clean
19make -C hvcontrol
20
21echo -n "Hit enter to make ddd"
22read
23cd tools/ddd
24make clean
25qmake
26make
27cd ../..
28
29echo -n "Hit enter to make inspectrawfile"
30read
31make -C tools/inspectrawfile clean
32make -C tools/inspectrawfile
33
34echo -n "Hit enter to make SocketClient"
35read
36make -C tools/SocketClient clean
37make -C tools/SocketClient
38
39echo -n "Hit enter to make SkyQualityMonitor"
40read
41make -C tools/SkyQualityMonitor clean
42make -C tools/SkyQualityMonitor
43
44popd >/dev/null
Note: See TracBrowser for help on using the repository browser.