#!/bin/sh

find . -type f \
	-not -path \*CVS\* \
	-not -path \*doc/html\* \
	-not -path \*doc/latex\* \
	-not -path \*deps\* \
	-not -path \*config\* \
	-not -path \*maintenance\* \
	-not -path \*autom4te\* \
	-not -name \*~ \
	-not -name .cvsignore \
	-not -name \*.o \
	-not -name \*stamp-h\* \
	-not -name \*.m4 \
	-not -name \*# \
	-not -name NOX_Config\* \
	-not -name Doxyfile\* \
	-not -name bootstrap \
	-not -name configure \
	-not -name \*.tar.gz \
	-not -name \*.a \
	-not -name Copying \
	-not -name .\* \
	-not -name \*.gif \
	-exec maintenance/spliceheader {} maintenance/header.txt \;
