BUILD 471 B

1234567891011121314151617181920212223242526272829
  1. load('//sys/src/FLAGS', "LIB_COMPILER_FLAGS")
  2. cc_library(
  3. name = "libhttpd",
  4. copts = LIB_COMPILER_FLAGS,
  5. includes=[
  6. "//sys/include",
  7. "//amd64/include",
  8. ],
  9. srcs = [
  10. "alloc.c",
  11. "checkcontent.c",
  12. "date.c",
  13. "fail.c",
  14. "gethead.c",
  15. "hio.c",
  16. "httpfmt.c",
  17. "httpunesc.c",
  18. "lower.c",
  19. "okheaders.c",
  20. "parse.c",
  21. "parsereq.c",
  22. "query.c",
  23. "redirected.c",
  24. "unallowed.c",
  25. "urlfmt.c",
  26. "urlunesc.c"
  27. ]
  28. )