#!/bin/bash
#	$Id: src-release,v 1.7 2002/11/01 02:02:30 mrustad Exp $
# Script to create source release of tools.
#
#	Mark Rustad, BRECIS Communications, 12/31/2001

export GZIP=-9
date=`date +%y%m%d`

cd ..

tar -czf toolsrc-${date}.tar.gz --exclude=CVS --exclude=.cvsignore \
	--exclude=.DS_Store --exclude=._\* --exclude=.\#\* \
	open-tools/README open-tools/RELEASE_NOTES open-tools/get-host-type \
	open-tools/bld-* open-tools/find-src open-tools/rebuild \
	open-tools/src-release open-tools/bin-release \
	open-tools/rebuild open-tools/binutils-*.tar.* \
	open-tools/gcc-*.tar.* open-tools/newlib-*.tar.* \
	open-tools/gdb-*.tar.* open-tools/patch-* open-tools/misc

