#!/bin/csh -f

# this just organizes the tagging of the elixir components

if ($#argv != 1) then
  echo "USAGE: tag-elixir (TAG)"
  exit 2
endif

cvs tag $1 Makefile
cvs tag $1 bin/
cvs tag $1 cmd.astro/
cvs tag $1 cmd.basic/
cvs tag $1 cmd.data/
cvs tag $1 doc/
cvs tag $1 dvo/
cvs tag $1 help/
cvs tag $1 include/
cvs tag $1 lib/
cvs tag $1 lib.data/
cvs tag $1 lib.shell/
cvs tag $1 mana/
cvs tag $1 scripts/

# don't place tag on these implementations
# cvs tag $1 dimm/
# cvs tag $1 dvo2/
# cvs tag $1 old/
# cvs tag $1 pclient/
# cvs tag $1 pcontrol/
# cvs tag $1 sched/
