ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/mktags
Revision: 1.1
Committed: Sat Feb 22 02:07:20 2003 UTC (21 years, 2 months ago) by greg
Branch: MAIN
Log Message:
Changes and check-in for 3.5 release
Includes new source files and modifications not recorded for many years
See ray/doc/notes/ReleaseNotes for notes between 3.1 and 3.5 release

File Contents

# User Rev Content
1 greg 1.1 #!/bin/csh -f
2     # RCSid: $Id$
3     # Make source tags files for vi
4     cd common
5     echo "Making tags file in common..."
6     ctags -w *.[ch]
7     cd ..
8     foreach d (cv gen hd ot px rt util)
9     cd $d
10     echo "Making tags file in $d..."
11     ctags -w `find *.[ch] -type f -print` ../common/*.[ch]
12     cd ..
13     end