build.ck 818 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*++
  2. Copyright (c) 2016 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. Minoca OS
  9. Abstract:
  10. This module contains the top level build target for Minoca OS.
  11. Author:
  12. Evan Green 14-Apr-2016
  13. Environment:
  14. Build
  15. --*/
  16. import menv;
  17. from menv import setupEnv, group;
  18. function build() {
  19. var allGroup;
  20. var entries;
  21. var tools;
  22. tools = setupEnv();
  23. entries = [
  24. "lib:test_apps",
  25. "images:"
  26. ];
  27. allGroup = group("all", entries);
  28. allGroup[0].default = true;
  29. entries = allGroup + tools;
  30. return entries;
  31. }