summaryrefslogtreecommitdiff
path: root/app/tools/oldscripts/roall
blob: 28f156b2eca0aa79daaf90193d116753a36100cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
if [ $# != 1 ] ; then
	echo "Usage: roall <RLSE>"
	exit 1
fi
cd ~/xtrkcad/$1
for d in bin help lib lib/params lib/demos lib/examples tools ; do
	(cd $d; for f in `make rcssrc` ; do
		if [ -w $f ] ; then
			echo $d/$f is writable
		fi
	done)
done
cd ~/wlib/$1
for d in include mswlib test gtklib ; do
	(cd $d;for f in `make rcssrc` ; do
		if [ -w $f ] ; then
			echo $d/$f is writable
		fi
	done)
done