Source
####################################################################
#
# Copyright (C) 2006 Andrew Tomazos <andrew@tomazos.com>
#
# 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.
#
####################################################################
#
# jjrun 1.0d1
#
# - Build and execute a JavaCC .jj file in one command
#
# - Requires javacc, java, make and sh
#
# - TODO: If you use something other than SimpleCharStream you
# will need to modify the OBJECTS variable below
#
# - TODO: Only tested on GNU/Linux
#
####################################################################
# $PROGFILE: This programs file path
PROGFILE=$0
# $VERSION: This programs version
VERSION=1.0d1
# $PROGNAME: This programs name
PROGNAME=`basename $0`
# If project not specified output usage and exit
if [ ! $1 ]
then
echo "USAGE: $PROGNAME <jjfile>"
exit 1
fi
# $PROJECT: The jj file to run
PROJECT=`basename $1 .jj`
# $MAKEFILE: An automatically generated makefile
MAKEFILE=$PROJECT.mk
# $FORCE: forces the regeneration of the makefile
FORCE=$2
# If the specified project does not exist than exit
if [ ! -f $PROJECT.jj ]
then
echo ERROR: $PROGNAME: File not found $PROJECT.jj
exit 1
fi
# If forcing makefile regeneration than delete the makefile
if [ $FORCE ]
then
rm $MAKEFILE
fi