BUILD 553 B

12345678910111213141516171819202122232425262728293031323334353637
  1. load('//sys/src/FLAGS', "LIB_COMPILER_FLAGS")
  2. cc_library(
  3. name = "libthread",
  4. copts = LIB_COMPILER_FLAGS,
  5. includes=[
  6. "//sys/include",
  7. "//amd64/include",
  8. ],
  9. srcs = [
  10. "$ARCH.c",
  11. "channel.c",
  12. "chanprint.c",
  13. "create.c",
  14. "debug.c",
  15. "dial.c",
  16. "exec.c",
  17. "exit.c",
  18. "id.c",
  19. "iocall.c",
  20. "ioclose.c",
  21. "iodial.c",
  22. "ioopen.c",
  23. "ioproc.c",
  24. "ioread.c",
  25. "ioreadn.c",
  26. "iosleep.c",
  27. "iowrite.c",
  28. "kill.c",
  29. "lib.c",
  30. "main.c",
  31. "note.c",
  32. "ref.c",
  33. "rendez.c",
  34. "sched.c"
  35. ]
  36. )