#!/bin/sh

if [ -n "$1" ]; then
  cp ../template/stdinc.h .
  cp ../template/Makefile .
  sed -i -e "/<TEMPLATE>/	s//$1/" Makefile
else
  echo "+++ Usage:  init.sh PluginName"
fi

