diff options
Diffstat (limited to 'deps/cpp-httplib/test/Makefile')
-rw-r--r-- | deps/cpp-httplib/test/Makefile | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/deps/cpp-httplib/test/Makefile b/deps/cpp-httplib/test/Makefile deleted file mode 100644 index 832f8cc..0000000 --- a/deps/cpp-httplib/test/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -#CXX = clang++ -CXXFLAGS = -g -std=c++11 -DGTEST_USE_OWN_TR1_TUPLE -I.. -I. -Wall -Wextra -Wtype-limits -Wconversion #-fsanitize=address - -OPENSSL_DIR = /usr/local/opt/openssl@1.1 -OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I$(OPENSSL_DIR)/include -L$(OPENSSL_DIR)/lib -lssl -lcrypto - -ZLIB_SUPPORT = -DCPPHTTPLIB_ZLIB_SUPPORT -lz - -BROTLI_DIR = /usr/local/opt/brotli -BROTLI_SUPPORT = -DCPPHTTPLIB_BROTLI_SUPPORT -I$(BROTLI_DIR)/include -L$(BROTLI_DIR)/lib -lbrotlicommon -lbrotlienc -lbrotlidec - -all : test - ./test - -proxy : test_proxy - ./test_proxy - -test : test.cc ../httplib.h Makefile cert.pem - $(CXX) -o test $(CXXFLAGS) test.cc gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT) -pthread - -test_proxy : test_proxy.cc ../httplib.h Makefile cert.pem - $(CXX) -o test_proxy $(CXXFLAGS) test_proxy.cc gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT) -pthread - -cert.pem: - openssl genrsa 2048 > key.pem - openssl req -new -batch -config test.conf -key key.pem | openssl x509 -days 3650 -req -signkey key.pem > cert.pem - openssl req -x509 -config test.conf -key key.pem -sha256 -days 3650 -nodes -out cert2.pem -extensions SAN - openssl genrsa 2048 > rootCA.key.pem - openssl req -x509 -new -batch -config test.rootCA.conf -key rootCA.key.pem -days 1024 > rootCA.cert.pem - openssl genrsa 2048 > client.key.pem - 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 - #c_rehash . - -clean: - rm -f test test_proxy pem *.0 *.1 *.srl |