Committed on the Free edition of March Hare Software CVSNT Server. Upgrade to CVS Suite for more features and support: http://march-hare.com/cvsnt/ git-svn-id: http://moon:8086/svn/vhdl/trunk@936 cc03376c-175c-47c8-b038-4cd826a8556b
33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
USE_TAG=MIPS_R13
|
|
PROJECT="mips_sys"
|
|
DIST_DIR="./release/mips.r13"
|
|
|
|
echo Log for $USE_TAG >$USE_TAG.log
|
|
|
|
# ---------------------------------------------------------------
|
|
# Export files tagged for this release
|
|
# To avoid CVS-problems with renamed files: Don't tag on per file basis.
|
|
# => Tag upper directory then delete tag from unwanted files!!!
|
|
|
|
# Release notes
|
|
cvs export -l -d $DIST_DIR/ -r $USE_TAG VHDL/lib/CPUs/MIPS/dist >>$USE_TAG.log
|
|
|
|
# VHDL files
|
|
cvs export -d $DIST_DIR/src/ -r $USE_TAG VHDL/lib/misc >>$USE_TAG.log
|
|
cvs export -d $DIST_DIR/src/ -r $USE_TAG VHDL/lib/uart >>$USE_TAG.log
|
|
cvs export -d $DIST_DIR/src/ -r $USE_TAG VHDL/lib/FIFO/src >>$USE_TAG.log
|
|
cvs export -l -d $DIST_DIR/src/ -r $USE_TAG VHDL/lib/CPUs/MIPS/src >>$USE_TAG.log
|
|
cvs export -l -d $DIST_DIR/src/ -r $USE_TAG VHDL/lib/CPUs/MIPS/src/core >>$USE_TAG.log
|
|
|
|
# Simulation files
|
|
cvs export -l -d $DIST_DIR/sim/ -r $USE_TAG VHDL/lib/CPUs/MIPS/sim >>$USE_TAG.log
|
|
|
|
# Documentation files
|
|
cvs export -d $DIST_DIR/doc/ -r $USE_TAG VHDL/lib/CPUs/MIPS/doc >>$USE_TAG.log
|
|
rm -f $DIST_DIR/doc/*.vsd
|
|
|
|
# Tools
|
|
cvs export -d $DIST_DIR/tools/ -r $USE_TAG VHDL/lib/CPUs/MIPS/tools >>$USE_TAG.log
|