#!/bin/sh 
#  Copyright 1997, Richard M. Troth, all rights reserved.  <plaintext> 
# 
#	  Name: .../rosixuft/makedist 
#		distribution maker for POSIX UFT 
#	  Date: 1997-Mar-25 
# 
 
# 
# where are we? 
PWD=`/bin/pwd` 
APP=`basename $PWD` 
 
# move up one level and archive it: 
cd ..; tar cvhf "$APP.tar" \
	"$APP/src" "$APP/bin" "$APP/etc" "$APP/man" "$APP/doc" \
	"$APP/README" "$APP/makefile" "$APP/makedist" "$APP/platform" 
 

