#!/bin/sh
# This should be a makefile, but it's pretty quick still.
echo -n "Processing "
for i in *.html.m4; do
	echo -n "$i... "
	m4 $i > ${i%%.m4}
	m4 -DHIGH_CONTROL_KEY $i > ${i%%.html.m4}-C.html
done
echo "Done!"
