]> granicus.if.org Git - postgresql/blob - src/tools/make_mkid
Use Intel SSE 4.2 CRC instructions where available.
[postgresql] / src / tools / make_mkid
1 #!/bin/sh
2
3 # src/tools/make_mkid
4
5 mkid `find \`pwd\`/ \( -name _deadcode -a -prune \) -o \
6         -type f -name '*.[chyl]' -print|sed 's;//;/;g'`
7
8 find . \( -name .git -a -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