#!/bin/sh # ---------------------------------------------------------------------------- # Description: # Compiles the specified CAPLIB2 source. # # $HOME should be set to the path to the cap2 subdirectory, e.g. "/home/smitty" # if it's /home/smitty/cap2. $PATH should have $HOME/cap2/bat:$HOME/cap2/bin # at it's front before invoking. # ---------------------------------------------------------------------------- # Changelog: # 920101 Created by Smitty. # ---------------------------------------------------------------------------- gcc -c -I$HOME/cap2/include -I$HOME/include $2 $3 $4 $5 $6 $1.c