#!/bin/sh
#
#	$Id: maketags,v 1.3 1999/11/22 06:10:33 chopps Exp $
#
# Simple script to make tags file
#

TAGS=ctags
TFLAGS=-dtw

${TAGS} ${TFLAGS} */*.[ch]
