Makefile.vars 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/wsdef.h\
  65. http/http_content.h\
  66. http/HttpMessage.h\
  67. http/HttpParser.h\
  68. http/WebSocketParser.h\
  69. http/WebSocketChannel.h\
  70. HTTP_CLIENT_HEADERS = http/client/http_client.h\
  71. http/client/requests.h\
  72. http/client/WebSocketClient.h\
  73. HTTP_SERVER_HEADERS = http/server/HttpService.h\
  74. http/server/HttpServer.h\
  75. http/server/WebSocketServer.h\
  76. CONSUL_HEADERS = consul/consul.h