#!/usr/bin/sh # This script is called by the Makefile and it expects 3 arguments # the mode for the install command # the source for the install command # and the destination directory. # it checks if the destination exist. If yes it prints a message. # if not, it calls install if [ -f $3/$2 ] ; then echo configuration file $3/$2 exists. Not overwritten. else install $* fi