Makefile 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #CXX = clang++
  2. CXXFLAGS = -g -std=c++11 -I. -Wall -Wextra -Wtype-limits -Wconversion #-fsanitize=address
  3. OPENSSL_DIR = /usr/local/opt/[email protected]
  4. OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I$(OPENSSL_DIR)/include -L$(OPENSSL_DIR)/lib -lssl -lcrypto
  5. ZLIB_SUPPORT = -DCPPHTTPLIB_ZLIB_SUPPORT -lz
  6. BROTLI_DIR = /usr/local/opt/brotli
  7. BROTLI_SUPPORT = -DCPPHTTPLIB_BROTLI_SUPPORT -I$(BROTLI_DIR)/include -L$(BROTLI_DIR)/lib -lbrotlicommon -lbrotlienc -lbrotlidec
  8. TEST_ARGS = gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT) -pthread
  9. all : test test_split
  10. ./test
  11. # Note: The intention of test_split is to verify that it works to compile and
  12. # link the split httplib.h, so there is normally no need to execute it.
  13. proxy : test_proxy
  14. ./test_proxy
  15. test : test.cc include_httplib.cc ../httplib.h Makefile cert.pem
  16. $(CXX) -o $@ -I.. $(CXXFLAGS) test.cc include_httplib.cc $(TEST_ARGS)
  17. test_split : test.cc ../httplib.h httplib.cc Makefile cert.pem
  18. $(CXX) -o $@ $(CXXFLAGS) test.cc httplib.cc $(TEST_ARGS)
  19. test_proxy : test_proxy.cc ../httplib.h Makefile cert.pem
  20. $(CXX) -o $@ -I.. $(CXXFLAGS) test_proxy.cc $(TEST_ARGS)
  21. httplib.cc : ../httplib.h
  22. python3 ../split.py -o .
  23. cert.pem:
  24. openssl genrsa 2048 > key.pem
  25. openssl req -new -batch -config test.conf -key key.pem | openssl x509 -days 3650 -req -signkey key.pem > cert.pem
  26. openssl req -x509 -config test.conf -key key.pem -sha256 -days 3650 -nodes -out cert2.pem -extensions SAN
  27. openssl genrsa 2048 > rootCA.key.pem
  28. openssl req -x509 -new -batch -config test.rootCA.conf -key rootCA.key.pem -days 1024 > rootCA.cert.pem
  29. openssl genrsa 2048 > client.key.pem
  30. openssl req -new -batch -config test.conf -key client.key.pem | openssl x509 -days 370 -req -CA rootCA.cert.pem -CAkey rootCA.key.pem -CAcreateserial > client.cert.pem
  31. #c_rehash .
  32. clean:
  33. rm -f test test_proxy pem *.0 *.1 *.srl httplib.h httplib.cc