#!/bin/sh
rm -f tags
TAG=$PWD/tags
echo $TAG
find . -type f -name "*.[ch]" -exec ctags -a --c-types=defgmstuvx -f $TAG {} \;
chmod a+r tags
