#!/bin/sh
# ---------------------------------------------------------------
# CVS checkout, compiling and installing new executable
# ---------------------------------------------------------------

(
  cvs -z9t update ; wait
  cd src
  make depend  ; wait
  make clean   ; wait
  make         ; wait
  make install ; wait
) > log/compile.log 2>&1

# cat log/compile.log | mail -s 'Offline make logs' -c muddev@dimetra.ru
