#!/bin/sh

# Build a test copy of hephaestus from its parts

# Bruce uses this during development, it is not normally needed
# because the Makefile.PL performs the same chore as this script

files='head absorption f1f2 ion data formula transition find line misc'

rm -f thing.pl
for f in $files; do
    echo -n $f " "
    cat hephaestus_parts/$f.pl >> thing.pl
done
cat hephaestus_parts/hephaestus.pod >> thing.pl
echo hephaestus.pod
echo "Wrote thing.pl";
chmod +x thing.pl
