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. 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/hssl.h\
  22. base/hlog.h\
  23. base/hbuf.h\
  24. base/hendian.h\
  25. UTIL_HEADERS = util/base64.h\
  26. util/md5.h\
  27. util/sha1.h\
  28. EVENT_HEADERS = event/hloop.h\
  29. event/nlog.h\
  30. CPPUTIL_HEADERS = cpputil/hmap.h\
  31. cpputil/hstring.h\
  32. cpputil/hfile.h\
  33. cpputil/hdir.h\
  34. cpputil/hurl.h\
  35. cpputil/hmain.h\
  36. cpputil/hscope.h\
  37. cpputil/hthreadpool.h\
  38. cpputil/hobjectpool.h\
  39. cpputil/ifconfig.h\
  40. cpputil/iniparser.h\
  41. cpputil/json.hpp\
  42. cpputil/singleton.h\
  43. cpputil/ThreadLocalStorage.h\
  44. EVPP_HEADERS = evpp/Buffer.h\
  45. evpp/Callback.h\
  46. evpp/Channel.h\
  47. evpp/Event.h\
  48. evpp/EventLoop.h\
  49. evpp/EventLoopThread.h\
  50. evpp/EventLoopThreadPool.h\
  51. evpp/Status.h\
  52. evpp/TcpClient.h\
  53. evpp/TcpServer.h\
  54. evpp/UdpClient.h\
  55. evpp/UdpServer.h\
  56. PROTOCOL_HEADERS = protocol/icmp.h\
  57. protocol/dns.h\
  58. protocol/ftp.h\
  59. protocol/smtp.h
  60. HTTP_HEADERS = http/httpdef.h\
  61. http/http2def.h\
  62. http/grpcdef.h\
  63. http/wsdef.h\
  64. http/http_content.h\
  65. http/HttpMessage.h\
  66. http/HttpParser.h\
  67. http/WebSocketParser.h\
  68. http/WebSocketChannel.h\
  69. HTTP_CLIENT_HEADERS = http/client/http_client.h\
  70. http/client/requests.h\
  71. http/client/WebSocketClient.h\
  72. HTTP_SERVER_HEADERS = http/server/HttpService.h\
  73. http/server/HttpServer.h\
  74. http/server/WebSocketServer.h\
  75. CONSUL_HEADERS = consul/consul.h