ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/mktags
Revision: 1.2
Committed: Sat Mar 15 17:55:48 2003 UTC (21 years, 1 month ago) by greg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
State: FILE REMOVED
Log Message:
Added missing files for 3.5 release

File Contents

# Content
1 #!/bin/csh -f
2 # RCSid: $Id: mktags,v 1.1 2003/02/22 02:07:20 greg Exp $
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