]> granicus.if.org Git - postgresql/blob - src/tools/make_mkid
Move USE_WIDE_UPPER_LOWER define to c.h, and remove TS_USE_WIDE and use
[postgresql] / src / tools / make_mkid
1 #!/bin/sh
2
3 # $PostgreSQL: pgsql/src/tools/make_mkid,v 1.11 2006/03/11 04:38:41 momjian Exp $
4
5 mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
6         -type f -name '*.[chyl]' -print|sed 's;//;/;g'`
7
8 find . -name  'CVS' -prune -o -type d -print  |while read DIR
9 do
10         [ "$DIR" != "." ] && ln -f -s `echo "$DIR" | sed 's;/[^/]*;/..;g'`/ID $DIR/ID
11 done