Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ################################################################################
  2. #
  3. # Copyright (c) 2013 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. # C Library
  13. #
  14. # Abstract:
  15. #
  16. # This module contains the C library, which provides a largely standard
  17. # interface between applications and the kernel interface. This C library
  18. # is considered "mostly POSIX". It attempts to follow the POSIX standard
  19. # as closely as possible, but adds many extensions expected by mainstream
  20. # programs, and omits some of the darker corners of the specification.
  21. #
  22. # Author:
  23. #
  24. # Evan Green 4-Mar-2013
  25. #
  26. # Environment:
  27. #
  28. # Build
  29. #
  30. ################################################################################
  31. DIRS = crypt \
  32. dynamic \
  33. static \
  34. LDFLAGS := -nostdlib
  35. include $(SRCROOT)/os/minoca.mk
  36. crypt: dynamic