Makefile 1.0 KB

123456789101112131415161718192021222324
  1. #CXX = clang++
  2. CXXFLAGS = -ggdb -O0 -std=c++11 -DGTEST_USE_OWN_TR1_TUPLE -I.. -I. -Wall -Wextra -Wtype-limits
  3. OPENSSL_DIR = /usr/local/opt/openssl
  4. OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I$(OPENSSL_DIR)/include -L$(OPENSSL_DIR)/lib -lssl -lcrypto
  5. ZLIB_SUPPORT = -DCPPHTTPLIB_ZLIB_SUPPORT -lz
  6. all : test
  7. ./test
  8. test : test.cc ../httplib.h Makefile cert.pem
  9. $(CXX) -o test $(CXXFLAGS) test.cc gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) -pthread
  10. cert.pem:
  11. openssl genrsa 2048 > key.pem
  12. openssl req -new -batch -config test.conf -key key.pem | openssl x509 -days 3650 -req -signkey key.pem > cert.pem
  13. openssl genrsa 2048 > rootCA.key.pem
  14. openssl req -x509 -new -batch -config test.rootCA.conf -key rootCA.key.pem -days 1024 > rootCA.cert.pem
  15. openssl genrsa 2048 > client.key.pem
  16. 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
  17. #c_rehash .
  18. clean:
  19. rm -f test *.pem *.0 *.1 *.srl