Makefile 908 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ################################################################################
  2. #
  3. # Copyright (c) 2016 Minoca Corp.
  4. #
  5. # This file is licensed under the terms of the GNU General Public License
  6. # version 3. Alternative licensing terms are available. Contact
  7. # info@minocacorp.com for details. See the LICENSE file at the root of this
  8. # project for complete licensing information.
  9. #
  10. # Module Name:
  11. #
  12. # Grammar Generator Library
  13. #
  14. # Abstract:
  15. #
  16. # This module implements support for an LALR(1) grammar data generator.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 9-Apr-2016
  21. #
  22. # Environment:
  23. #
  24. # Any
  25. #
  26. ################################################################################
  27. BINARY = yygen.a
  28. BINARYTYPE = library
  29. BUILD = yes
  30. OBJS = lalr.o \
  31. lr0.o \
  32. output.o \
  33. parcon.o \
  34. verbose.o \
  35. yygen.o \
  36. include $(SRCROOT)/os/minoca.mk