Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 = banner \
  31. ck \
  32. debug \
  33. efiboot \
  34. mingen \
  35. mount \
  36. netcon \
  37. profile \
  38. santa \
  39. setup \
  40. swiss \
  41. testapps \
  42. tzcomp \
  43. tzset \
  44. unmount \
  45. vmstat \
  46. DIRS = $(APPS) \
  47. lib \
  48. libc \
  49. netlink \
  50. osbase \
  51. posix \
  52. include $(SRCROOT)/os/minoca.mk
  53. libc: osbase
  54. $(APPS): libc lib netlink
  55. lib: libc
  56. netlink: libc
  57. setup santa mingen: ck