123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ################################################################################
- #
- # Copyright (c) 2016 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:
- #
- # Grammar Generator Library
- #
- # Abstract:
- #
- # This module implements support for an LALR(1) grammar data generator.
- #
- # Author:
- #
- # Evan Green 9-Apr-2016
- #
- # Environment:
- #
- # Any
- #
- ################################################################################
- BINARY = yygen.a
- BINARYTYPE = library
- BUILD = yes
- OBJS = lalr.o \
- lr0.o \
- output.o \
- parcon.o \
- verbose.o \
- yygen.o \
- include $(SRCROOT)/os/minoca.mk
|