#!/bin/sh top=../trunk/SharpDevelop if [ X"$1" = X-u ] ; then rm -f $top/data/modes/Nemerle.xshd rm -rf $top/AddIns/AddIns/BackendBindings/Nemerle elif [ x"$1" = x ] ; then cp -f Nemerle.xshd $top/data/modes/ mkdir -p $top/AddIns/AddIns/BackendBindings/Nemerle/ cp -rf templates $top/AddIns/AddIns/BackendBindings/Nemerle/ cp -f NemerleBinding.addin $top/AddIns/AddIns/BackendBindings/Nemerle/ cp -f obj/Debug/NemerleBinding.* $top/AddIns/AddIns/BackendBindings/Nemerle/ else echo "usage: $0 [-u]" fi