1#!/bin/sh 2 3# Copyright 2016 The Fuchsia Authors 4# Copyright (c) 2008 Travis Geiselbrecht 5# 6# Use of this source code is governed by a MIT-style 7# license that can be found in the LICENSE file or at 8# https://opensource.org/licenses/MIT 9 10rm -f TAGS 11find . \( -name 'build-*' -prune \) -o \ 12 \( -type f -name '*.[chS]' -o -name *.cpp \) -print0 | xargs -0 etags -a 13