#!/bin/sh
#
echo "-- Change directory to src/ and make (for Linux) --"
echo "   make libwy.a  ... make libwy.a"
echo "   make all      ... make libwy.a and check executables"
echo "   make clean    ... remove files generated by make all"
echo "   make check    ... make all and run check files"
echo "                     (might be harmful if run with root privilege)"
echo "   make install  ... install library (root may be required)"
echo "                     see Makefile to modify install directory"
echo "   make uninstall .. uninstall library (root may be required)"
