summaryrefslogtreecommitdiff
path: root/libs/cpp-httplib/example/Makefile
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@mailbox.org>2026-01-09 15:28:38 +0100
committerAldrik Ramaekers <aldrik@mailbox.org>2026-01-09 15:28:38 +0100
commit210404a73706993d197c1290d5a411394e176fbe (patch)
tree93c3ea9fc4691ca42f26dd92c6e14627af0b47af /libs/cpp-httplib/example/Makefile
parenta65e876f3277a7d7fca6e5129ac3e200dae2d0dc (diff)
remove unused lib files
Diffstat (limited to 'libs/cpp-httplib/example/Makefile')
-rw-r--r--libs/cpp-httplib/example/Makefile67
1 files changed, 0 insertions, 67 deletions
diff --git a/libs/cpp-httplib/example/Makefile b/libs/cpp-httplib/example/Makefile
deleted file mode 100644
index 3082b88..0000000
--- a/libs/cpp-httplib/example/Makefile
+++ /dev/null
@@ -1,67 +0,0 @@
-#CXX = clang++
-CXXFLAGS = -O2 -std=c++11 -I.. -Wall -Wextra -pthread
-
-PREFIX ?= $(shell brew --prefix)
-
-OPENSSL_DIR = $(PREFIX)/opt/openssl@3
-OPENSSL_SUPPORT = -DCPPHTTPLIB_OPENSSL_SUPPORT -I$(OPENSSL_DIR)/include -L$(OPENSSL_DIR)/lib -lssl -lcrypto
-
-ifneq ($(OS), Windows_NT)
- UNAME_S := $(shell uname -s)
- ifeq ($(UNAME_S), Darwin)
- OPENSSL_SUPPORT += -framework CoreFoundation -framework Security
- endif
-endif
-
-ZLIB_SUPPORT = -DCPPHTTPLIB_ZLIB_SUPPORT -lz
-
-BROTLI_DIR = $(PREFIX)/opt/brotli
-BROTLI_SUPPORT = -DCPPHTTPLIB_BROTLI_SUPPORT -I$(BROTLI_DIR)/include -L$(BROTLI_DIR)/lib -lbrotlicommon -lbrotlienc -lbrotlidec
-
-all: server client hello simplecli simplesvr upload redirect ssesvr ssecli benchmark one_time_request server_and_client accept_header
-
-server : server.cc ../httplib.h Makefile
- $(CXX) -o server $(CXXFLAGS) server.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-client : client.cc ../httplib.h Makefile
- $(CXX) -o client $(CXXFLAGS) client.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-hello : hello.cc ../httplib.h Makefile
- $(CXX) -o hello $(CXXFLAGS) hello.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-simplecli : simplecli.cc ../httplib.h Makefile
- $(CXX) -o simplecli $(CXXFLAGS) simplecli.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-simplesvr : simplesvr.cc ../httplib.h Makefile
- $(CXX) -o simplesvr $(CXXFLAGS) simplesvr.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-upload : upload.cc ../httplib.h Makefile
- $(CXX) -o upload $(CXXFLAGS) upload.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-redirect : redirect.cc ../httplib.h Makefile
- $(CXX) -o redirect $(CXXFLAGS) redirect.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-ssesvr : ssesvr.cc ../httplib.h Makefile
- $(CXX) -o ssesvr $(CXXFLAGS) ssesvr.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-ssecli : ssecli.cc ../httplib.h Makefile
- $(CXX) -o ssecli $(CXXFLAGS) ssecli.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-benchmark : benchmark.cc ../httplib.h Makefile
- $(CXX) -o benchmark $(CXXFLAGS) benchmark.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-one_time_request : one_time_request.cc ../httplib.h Makefile
- $(CXX) -o one_time_request $(CXXFLAGS) one_time_request.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-server_and_client : server_and_client.cc ../httplib.h Makefile
- $(CXX) -o server_and_client $(CXXFLAGS) server_and_client.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-accept_header : accept_header.cc ../httplib.h Makefile
- $(CXX) -o accept_header $(CXXFLAGS) accept_header.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) $(BROTLI_SUPPORT)
-
-pem:
- openssl genrsa 2048 > key.pem
- openssl req -new -key key.pem | openssl x509 -days 3650 -req -signkey key.pem > cert.pem
-
-clean:
- rm server client hello simplecli simplesvr upload redirect ssesvr ssecli benchmark one_time_request server_and_client accept_header *.pem