#!/bin/sh
# Portable System Interface Copyright (c) 1997-1998 Tycho Softworks.
# $Id: instdir 1.1 Tue, 23 Jun 1998 11:38:33 -0400 dyfet $

prefix=$1
shift
install -d $prefix
cp $* $prefix

