#!/bin/sh
#
#	$Id: maketags,v 1.4 2000/04/05 04:36:08 chopps Exp $
#
# Simple script to make tags file
#

CTAGS=ctags
ETAGS=etags
TFLAGS=-dtw

${CTAGS} ${TFLAGS} */*.[ch]
${ETAGS} */*.[ch]
