Makefile.vars 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. MKDIR = -mkdir -p 2>/dev/null
  2. CP = -cp -r 2>/dev/null
  3. RM = -rm -r 2>/dev/null
  4. PREFIX ?= /usr/local
  5. INSTALL_INCDIR ?= $(PREFIX)/include/hv
  6. INSTALL_LIBDIR ?= $(PREFIX)/lib
  7. BASE_HEADERS = base/hplatform.h\
  8. \
  9. base/hdef.h\
  10. base/hatomic.h\
  11. base/herr.h\
  12. base/htime.h\
  13. base/hmath.h\
  14. base/hbase.h\
  15. base/hversion.h\
  16. base/hsysinfo.h\
  17. base/hproc.h\
  18. base/hthread.h\
  19. base/hmutex.h\
  20. base/hsocket.h\
  21. base/hlog.h\
  22. base/hbuf.h\
  23. base/hmain.h\
  24. base/hendian.h\
  25. SSL_HEADERS = ssl/hssl.h
  26. EVENT_HEADERS = event/hloop.h\
  27. event/nlog.h\
  28. UTIL_HEADERS = util/base64.h\
  29. util/md5.h\
  30. util/sha1.h\
  31. CPPUTIL_HEADERS = cpputil/hmap.h\
  32. cpputil/hstring.h\
  33. cpputil/hfile.h\
  34. cpputil/hpath.h\
  35. cpputil/hdir.h\
  36. cpputil/hurl.h\
  37. cpputil/hscope.h\
  38. cpputil/hthreadpool.h\
  39. cpputil/hasync.h\
  40. cpputil/hobjectpool.h\
  41. cpputil/ifconfig.h\
  42. cpputil/iniparser.h\
  43. cpputil/json.hpp\
  44. cpputil/singleton.h\
  45. cpputil/ThreadLocalStorage.h\
  46. EVPP_HEADERS = evpp/Buffer.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/wsdef.h\
  63. http/http_content.h\
  64. http/HttpMessage.h\
  65. http/HttpParser.h\
  66. http/WebSocketParser.h\
  67. http/WebSocketChannel.h\
  68. HTTP2_HEADERS = http/http2def.h\
  69. http/grpcdef.h\
  70. HTTP_CLIENT_HEADERS = http/client/http_client.h\
  71. http/client/requests.h\
  72. http/client/axios.h\
  73. http/client/AsyncHttpClient.h\
  74. http/client/WebSocketClient.h\
  75. HTTP_SERVER_HEADERS = http/server/HttpServer.h\
  76. http/server/HttpService.h\
  77. http/server/HttpContext.h\
  78. http/server/HttpResponseWriter.h\
  79. http/server/WebSocketServer.h\
  80. MQTT_HEADERS = mqtt/mqtt_protocol.h\
  81. mqtt/mqtt_client.h\