Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. # Applications
  13. #
  14. # Abstract:
  15. #
  16. # This module contains user-mode programs.
  17. #
  18. # Author:
  19. #
  20. # Evan Green 25-Feb-2013
  21. #
  22. # Environment:
  23. #
  24. # Build
  25. #
  26. ################################################################################
  27. ##
  28. ## Add apps that are dependent on the C library here.
  29. ##
  30. APPS = ck \
  31. debug \
  32. efiboot \
  33. mingen \
  34. mount \
  35. netcon \
  36. profile \
  37. setup \
  38. swiss \
  39. testapps \
  40. tzcomp \
  41. unmount \
  42. vmstat \
  43. DIRS = $(APPS) \
  44. lib \
  45. libc \
  46. netlink \
  47. osbase \
  48. posix \
  49. include $(SRCROOT)/os/minoca.mk
  50. libc: osbase
  51. $(APPS): libc lib netlink
  52. lib: libc
  53. netlink: libc
  54. setup: ck