123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ################################################################################
- #
- # Copyright (c) 2015 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information.
- #
- # Module Name:
- #
- # Lex/Parse Library
- #
- # Abstract:
- #
- # This module implements support for a simple lexer and parser. This is
- # not the world's greatest implementation, but works for straightforward
- # language specifications.
- #
- # Author:
- #
- # Evan Green 9-Oct-2015
- #
- # Environment:
- #
- # Any
- #
- ################################################################################
- BINARY = yy.a
- BINARYTYPE = library
- include $(SRCDIR)/sources
- DIRS = build \
- gen \
- TESTDIRS = yytest
- include $(SRCROOT)/os/minoca.mk
|