build.ck 677 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*++
  2. Copyright (c) 2014 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Boot Configuration Library
  5. Abstract:
  6. This module implements the Boot Configuration Library.
  7. Author:
  8. Evan Green 20-Feb-2014
  9. Environment:
  10. Any
  11. --*/
  12. function build() {
  13. sources = [
  14. "bconf.c"
  15. ];
  16. bconf_lib = {
  17. "label": "bconf",
  18. "inputs": sources,
  19. };
  20. build_bconf_lib = {
  21. "label": "build_bconf",
  22. "output": "bconf",
  23. "inputs": sources,
  24. "build": TRUE,
  25. "prefix": "build"
  26. };
  27. entries = static_library(bconf_lib);
  28. entries += static_library(build_bconf_lib);
  29. return entries;
  30. }
  31. return build();