#!/bin/sh

FILES=`find . -type f -regex ".*\.[chS]\|.*\.cpp"`

echo running etags
etags --declarations $FILES

