summaryrefslogtreecommitdiffstats
path: root/generate.sh
blob: 1dbe1284d2d302711bac52909473e4992791759f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

FILES=sources/*.page.html

for src in $FILES; do
  dst=`basename $src .page.html`.html;
  echo Generating www/$dst
  cpp -P $src > www/$dst;
done