build.ck 550 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*++
  2. Copyright (c) 2012 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Kernel Rtl
  5. Abstract:
  6. This library contains kernel-specific functions for the Runtime Library.
  7. Author:
  8. Evan Green 26-Jul-2012
  9. Environment:
  10. Kernel
  11. --*/
  12. function build() {
  13. sources = [
  14. "assert.c",
  15. "kprint.c"
  16. ];
  17. includes = [
  18. "$//lib/rtl"
  19. ];
  20. lib = {
  21. "label": "krtl",
  22. "inputs": sources,
  23. "includes": includes
  24. };
  25. entries = static_library(lib);
  26. return entries;
  27. }
  28. return build();