#
# make test (or just: make)
#    generates lexer & parser, compiles all *.java files, and runs test
#

# main class
MAIN = ZeroLexer

# test data
TEST_IN  = src/test/data/test-input.txt
OUT_GOOD = src/test/data/lexer-output.good

# jflex input
LEXER_IN = src/main/jflex/zero-lexer.jflex
LEXER_CLASS = $(MAIN)

# no cup file in this example
PARSER_OUT =

include ../common/Makefile.inc
