#!/bin/sh
#
# mkskel-sh - Make a .c file corresponding to a set of skeleton files.
#
# Usage: mkskel-sh etc/FILE ... >OUT
#
# Copyright (C) 2002  Southern Storm Software, Pty Ltd.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

# Check the command-line parameters.
if test -z "$1" ; then
	echo "Usage: $0 etc/FILE ... >OUT"
	exit 1
fi

# Output the header material.
echo '/* This file is automatically generated by mkskel-sh - do not edit */'
echo ''
echo '#include "config.h"'
echo ''

# Convert the input files into strings.
for file in $* ; do
	VARNAME=TreeCCSkel_`basename "$file" | sed -e '1,$s/\./_/g'`
	echo "static char const ${VARNAME}[] ="
	sed -e '1,$s/\\/\\\\/g' "$file" | \
		sed -e '1,$s/"/\\"/g' | \
		sed -e '1,$s/^/"/g' | \
		sed -e '1,$s/$/\\n"/g'
	echo ';'
done

# Output the skeleton lookup table.
echo 'const char * const TreeCCSkelFiles[] = {'
for file in $* ; do
	BASENAME=`basename "$file"`
	VARNAME=TreeCCSkel_`basename "$file" | sed -e '1,$s/\./_/g'`
	echo '    "'"$BASENAME"'", '"$VARNAME"','
done
echo '    0'
echo '};'

# Output the footer material and exit.
exit 0
