BUILD 580 B

12345678910111213141516171819202122232425262728
  1. load('//sys/src/FLAGS', "LIB_COMPILER_FLAGS")
  2. cc_library(
  3. name="libauth",
  4. copts=LIB_COMPILER_FLAGS,
  5. includes=[
  6. "//sys/include",
  7. "//amd64/include",
  8. ],
  9. srcs=[
  10. "amount.c",
  11. "amount_getkey.c",
  12. "attr.c",
  13. "auth_attr.c",
  14. "auth_challenge.c",
  15. "auth_chuid.c",
  16. "auth_getkey.c",
  17. "auth_getuserpasswd.c",
  18. "auth_proxy.c",
  19. "auth_respond.c",
  20. "auth_rpc.c",
  21. "auth_userpasswd.c",
  22. "auth_wep.c",
  23. "login.c",
  24. "newns.c",
  25. "noworld.c"
  26. ]
  27. )