build.ck 662 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*++
  2. Copyright (c) 2013 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. DbgExt
  5. Abstract:
  6. This module implements the import library for kernel debugger
  7. extensions.
  8. Author:
  9. Evan Green 8-May-2013
  10. Environment:
  11. Debug
  12. --*/
  13. function build() {
  14. sources = [
  15. "extimp.c",
  16. ];
  17. lib = {
  18. "label": "dbgext",
  19. "inputs": sources,
  20. };
  21. build_lib = {
  22. "label": "build_dbgext",
  23. "output": "dbgext",
  24. "inputs": sources,
  25. "build": TRUE,
  26. "prefix": "build"
  27. };
  28. entries = static_library(lib);
  29. entries += static_library(build_lib);
  30. return entries;
  31. }
  32. return build();