Makefile.vars 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. MKDIR = -mkdir -p 2>/dev/null
  2. CP = -cp -r 2>/dev/null
  3. RM = -rm -r 2>/dev/null
  4. INSTALL_INCDIR=/usr/local/include/hv
  5. INSTALL_LIBDIR=/usr/local/lib
  6. BASE_HEADERS = base/hplatform.h\
  7. \
  8. base/hdef.h\
  9. base/hatomic.h\
  10. base/herr.h\
  11. base/htime.h\
  12. base/hmath.h\
  13. base/hbase.h\
  14. base/hversion.h\
  15. base/hsysinfo.h\
  16. base/hproc.h\
  17. base/hthread.h\
  18. base/hmutex.h\
  19. base/hsocket.h\
  20. base/hssl.h\
  21. base/hlog.h\
  22. base/hbuf.h\
  23. \
  24. base/hmap.h\
  25. base/hstring.h\
  26. base/hfile.h\
  27. base/hdir.h\
  28. base/hurl.h\
  29. base/hscope.h\
  30. base/hthreadpool.h\
  31. base/hobjectpool.h\
  32. base/ifconfig.h\
  33. base/ThreadLocalStorage.h\
  34. UTILS_HEADERS = utils/base64.h\
  35. utils/md5.h\
  36. utils/sha1.h\
  37. utils/json.hpp\
  38. utils/singleton.h\
  39. utils/iniparser.h\
  40. utils/hendian.h\
  41. utils/hmain.h\
  42. EVENT_HEADERS = event/hloop.h\
  43. event/nlog.h\
  44. event/nmap.h\
  45. EVPP_HEADERS = evpp/Buffer.h\
  46. evpp/Callback.h\
  47. evpp/Channel.h\
  48. evpp/Event.h\
  49. evpp/EventLoop.h\
  50. evpp/EventLoopThread.h\
  51. evpp/EventLoopThreadPool.h\
  52. evpp/Status.h\
  53. evpp/TcpClient.h\
  54. evpp/TcpServer.h\
  55. evpp/UdpClient.h\
  56. evpp/UdpServer.h\
  57. PROTOCOL_HEADERS = protocol/icmp.h\
  58. protocol/dns.h\
  59. protocol/ftp.h\
  60. protocol/smtp.h
  61. HTTP_HEADERS = http/httpdef.h\
  62. http/http2def.h\
  63. http/grpcdef.h\
  64. http/http_content.h\
  65. http/HttpMessage.h\
  66. http/HttpParser.h\
  67. HTTP_CLIENT_HEADERS = http/client/http_client.h http/client/requests.h
  68. HTTP_SERVER_HEADERS = http/server/HttpService.h http/server/HttpServer.h
  69. CONSUL_HEADERS = consul/consul.h