#!/bin/sh

# This script fixes the case sensitivity problem when compiling
# Inform code on *nix systems.
# It only fixes the standard libraries. If you add any additional
# or customised libraries, You're on Your Own(tm).
#
# As root copy this file into your standard Inform libraries directory,
# (e.g /usr/local/share/inform/6.30/module) change to the directory,
# and run: sh ./unixcasefix.sh
#
# This problem is easily fixed, but I don't want to have to type this
# every time I install Inform, therefore this script exists. Hope
# someone else finds it useful. :)
#
# Enjoy!
#
# Glen Smith 02/03/04

ln -s english.h English.h
ln -s grammar.h Grammar.h
ln -s infix.h Infix.h
ln -s linklpa.h Linklpa.h
ln -s linklv.h Linklv.h
ln -s parser.h Parser.h
ln -s parserm.h Parserm.h
ln -s parserm.m5 Parserm.m5
ln -s verblib.h VerbLib.h
ln -s verblibm.h VerbLibm.h
ln -s verblibm.m5 VerbLibm.m5

echo Done!