blob: ae41d71cf15687fbe2dedf958b8152097f9d3f25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
if [ $# -lt 1 ] ; then
echo "markall TAG"
exit 1
fi
TAG=$1
cd ~/xtrkcad/src
for d in bin help lib lib/params lib/demos lib/examples tools ; do
echo xtrkcad/src/$d:
(cd $d ; co Makefile ; rcs -N$TAG:1. `make rcssrc`)
done
cd ~/wlib/src
for d in include mswlib test gtklib ; do
echo wlib/src/$d
(cd $d ; co Makefile ; rcs -N$TAG:1. `make rcssrc`)
done
|