#!/bin/sh
#----------------------------------------------------------------------
# Description:  tarball'a c  
# Author:   .
# Created at: Sat Oct  4 19:01:04 MSD 2003
# Computer: localhost.localdomain 
# System: Linux 2.4.18-5asp on i686
#
# Copyright (c) 2003   .  All rights reserved.
#----------------------------------------------------------------------


if [ -z "$1" ]; then
	OUT_DIR="$PWD"
else
	OUT_DIR="$1"
fi

if [ ! -d "$OUT_DIR" ] || [ ! -w "$OUT_DIR" ]; then
	echo "    : $OUT_DIR"
fi


# Source function library.
SOURCE="${QT_TOOLS}/functions"
if [ -a "${SOURCE}" ]; then
	. ${SOURCE}
else
	echo " ${SOURCE}  "
	exit
fi


create_tar

