#!/bin/bash
#
# - - - - - - -
#  u p d a t e
# - - - - - - -
#
# Copy SOFA/C files from Windows to Ubuntu.
#
# On the Windows7 side all the files, including this one, are in
# C:\a\winlux\sofa_c.  From the Ubuntu side, transfer this file
# somewhere, weed it, chmod +x it, then type "./update".  Finally
# copy everything to ~/sofa_c
#
# Revision date:  2016 March 9
#

for f in *.c *.h  *.lis *.pl makefile manual; do weed $f; done
chmod +x manual
chmod +x sofa_c.pl

exit