build.ck 680 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*++
  2. Copyright (c) 2015 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. profile
  5. Abstract:
  6. This executable implements the profile application. It is used to
  7. enable and disable the Minoca System Profiler.
  8. Author:
  9. Chris Stevens 18-Jan-2015
  10. Environment:
  11. User
  12. --*/
  13. function build() {
  14. sources = [
  15. "profile.c"
  16. ];
  17. dynlibs = [
  18. "//apps/osbase:libminocaos"
  19. ];
  20. includes = [
  21. "$//apps/include",
  22. "$//apps/include/libc"
  23. ];
  24. app = {
  25. "label": "profile",
  26. "inputs": sources + dynlibs,
  27. "includes": includes
  28. };
  29. entries = application(app);
  30. return entries;
  31. }
  32. return build();