diff options
| author | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-09 15:28:38 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrik@mailbox.org> | 2026-01-09 15:28:38 +0100 |
| commit | 210404a73706993d197c1290d5a411394e176fbe (patch) | |
| tree | 93c3ea9fc4691ca42f26dd92c6e14627af0b47af /libs/cpp-httplib/benchmark/Makefile | |
| parent | a65e876f3277a7d7fca6e5129ac3e200dae2d0dc (diff) | |
remove unused lib files
Diffstat (limited to 'libs/cpp-httplib/benchmark/Makefile')
| -rw-r--r-- | libs/cpp-httplib/benchmark/Makefile | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/libs/cpp-httplib/benchmark/Makefile b/libs/cpp-httplib/benchmark/Makefile deleted file mode 100644 index 6dc93f0..0000000 --- a/libs/cpp-httplib/benchmark/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -CXXFLAGS = -std=c++11 -O2 -I.. - -CPPHTTPLIB_FLAGS = -DCPPHTTPLIB_THREAD_POOL_COUNT=16 - -BENCH = bombardier -c 10 -d 5s localhost:8080 -MONITOR = ali http://localhost:8080 - -# cpp-httplib -bench: server - @echo "--------------------\n cpp-httplib latest\n--------------------\n" - @./server & export PID=$$!; $(BENCH); kill $${PID} - @echo "" - -monitor: server - @./server & export PID=$$!; $(MONITOR); kill $${PID} - -run : server - @./server - -server : cpp-httplib/main.cpp ../httplib.h - @g++ -o $@ $(CXXFLAGS) $(CPPHTTPLIB_FLAGS) cpp-httplib/main.cpp - -# crow -bench-crow: server-crow - @echo "-------------\n Crow v1.2.0\n-------------\n" - @./server-crow & export PID=$$!; $(BENCH); kill $${PID} - @echo "" - -monitor-crow: server-crow - @./server-crow & export PID=$$!; $(MONITOR); kill $${PID} - -run-crow : server-crow - @./server-crow - -server-crow : crow/main.cpp - @g++ -o $@ $(CXXFLAGS) crow/main.cpp - -# misc -build: server server-crow - -bench-all: bench-crow bench - -issue: - bombardier -c 10 -d 30s localhost:8080 - -clean: - rm -rf server* |
