BUILD 414 B

123456789101112131415161718192021222324252627
  1. load('//sys/src/FLAGS', "LIB_COMPILER_FLAGS")
  2. cc_library(
  3. name = "libsunrpc",
  4. copts = LIB_COMPILER_FLAGS,
  5. includes=[
  6. "//sys/include",
  7. "//amd64/include",
  8. ],
  9. srcs = [
  10. "mount3.c",
  11. "nfs3.c",
  12. "portmap.c",
  13. "authunix.c",
  14. "client.c",
  15. "emalloc.c",
  16. "error.c",
  17. "fd.c",
  18. "fmt.c",
  19. "net.c",
  20. "prog.c",
  21. "rpc.c",
  22. "server.c",
  23. "suncall.c",
  24. "udp.c"
  25. ]
  26. )