Makefile 958 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ################################################################################
  2. #
  3. # Copyright (c) 2015 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. # Lex/Parse Library
  13. #
  14. # Abstract:
  15. #
  16. # This module implements support for a simple lexer and parser. This is
  17. # not the world's greatest implementation, but works for straightforward
  18. # language specifications.
  19. #
  20. # Author:
  21. #
  22. # Evan Green 9-Oct-2015
  23. #
  24. # Environment:
  25. #
  26. # Any
  27. #
  28. ################################################################################
  29. BINARY = yy.a
  30. BINARYTYPE = library
  31. include $(SRCDIR)/sources
  32. DIRS = build \
  33. gen \
  34. TESTDIRS = yytest
  35. include $(SRCROOT)/os/minoca.mk