build.ck 579 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*++
  2. Copyright (c) 2012 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Object Manager
  5. Abstract:
  6. This library contains the Object Manager. It maintains a global
  7. file-system like hierarchy of objects used by many other kernel
  8. components including Mm, Io, Ke and Ps.
  9. Author:
  10. Evan Green 4-Sep-2012
  11. Environment:
  12. Kernel
  13. --*/
  14. function build() {
  15. sources = [
  16. "handles.c",
  17. "obapi.c"
  18. ];
  19. lib = {
  20. "label": "ob",
  21. "inputs": sources,
  22. };
  23. entries = static_library(lib);
  24. return entries;
  25. }
  26. return build();