#!/bin/sh # file: install # author: earnie email: earnie_boyd@hotmail.com # Install Preprocessor for the gnu-win32 "make install" command. # # To use: # mv /bin/install.exe /bin/ginstall # copy this file to /bin/install # # Note: # No warranty implicit or explicit is given. # You may copy, distribute and use as you see fit. # USE AT YOU OWN RISK. # tstr="" while test $# -gt 0; \ do \ if test -e $1.exe; \ then \ tstr="$tstr$1.exe $2.exe"; \ shift; \ else \ tstr="$tstr$1 "; \ fi; \ shift; \ done echo "/bin/ginstall $tstr" eval "/bin/ginstall $tstr"; \ exit