1
0

Makefile.vars 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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/hversion.h\
  11. base/hbase.h\
  12. base/hsysinfo.h\
  13. base/hproc.h\
  14. base/hmath.h\
  15. base/htime.h\
  16. base/herr.h\
  17. base/hlog.h\
  18. base/hmutex.h\
  19. base/hthread.h\
  20. base/hsocket.h\
  21. base/hssl.h\
  22. base/hbuf.h\
  23. base/hurl.h\
  24. base/hgui.h\
  25. \
  26. base/hmap.h\
  27. base/hstring.h\
  28. base/hvar.h\
  29. base/hobj.h\
  30. base/hfile.h\
  31. base/hdir.h\
  32. base/hscope.h\
  33. base/hthreadpool.h\
  34. base/hobjectpool.h\
  35. base/ifconfig.h\
  36. UTILS_HEADERS = utils/base64.h\
  37. utils/md5.h\
  38. utils/json.hpp\
  39. utils/singleton.h\
  40. utils/iniparser.h\
  41. utils/hendian.h\
  42. utils/hmain.h\
  43. EVENT_HEADERS = event/hloop.h\
  44. event/nlog.h\
  45. event/nmap.h\
  46. PROTOCOL_HEADERS = protocol/icmp.h\
  47. protocol/dns.h\
  48. protocol/ftp.h\
  49. protocol/smtp.h
  50. HTTP_HEADERS = http/httpdef.h\
  51. http/http2def.h\
  52. http/grpcdef.h\
  53. http/http_content.h\
  54. http/HttpMessage.h\
  55. http/HttpParser.h\
  56. HTTP_CLIENT_HEADERS = http/client/http_client.h
  57. HTTP_SERVER_HEADERS = http/server/HttpService.h http/server/HttpServer.h
  58. CONSUL_HEADERS = consul/consul.h