Last change
on this file since 13 was 2, checked in by Rick van der Zwet, 15 years ago |
Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)
|
-
Property svn:executable
set to
*
|
File size:
311 bytes
|
Rev | Line | |
---|
[2] | 1 | #!/bin/sh
|
---|
| 2 |
|
---|
| 3 | #Initial input
|
---|
| 4 | make clean
|
---|
| 5 |
|
---|
| 6 | # Loop, loop, loop, debugging
|
---|
| 7 | while [ "true" ];
|
---|
| 8 | do
|
---|
| 9 | #Only needs to run when any updates did occur
|
---|
| 10 | make -q
|
---|
| 11 | if [ $? -ne 0 ]; then
|
---|
| 12 | echo "#"
|
---|
| 13 | echo "# Build: `date`"
|
---|
| 14 | echo "#"
|
---|
| 15 | make && sleep 1 && sh calculate.sh
|
---|
| 16 | fi
|
---|
| 17 | sleep 10
|
---|
| 18 | done
|
---|
Note:
See
TracBrowser
for help on using the repository browser.