summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/doc/Makefile
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:19:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:07:37 +0000
commitb485aab7e71c1625cfc27e0f92c9509f42378458 (patch)
treeae9abe108601079d1679194de237c9a435ae5b55 /web/server/h2o/libh2o/doc/Makefile
parentAdding upstream version 1.44.3. (diff)
downloadnetdata-b485aab7e71c1625cfc27e0f92c9509f42378458.tar.xz
netdata-b485aab7e71c1625cfc27e0f92c9509f42378458.zip
Adding upstream version 1.45.3+dfsg.upstream/1.45.3+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/server/h2o/libh2o/doc/Makefile')
-rw-r--r--web/server/h2o/libh2o/doc/Makefile56
1 files changed, 0 insertions, 56 deletions
diff --git a/web/server/h2o/libh2o/doc/Makefile b/web/server/h2o/libh2o/doc/Makefile
deleted file mode 100644
index 5cd5f2984..000000000
--- a/web/server/h2o/libh2o/doc/Makefile
+++ /dev/null
@@ -1,56 +0,0 @@
-VPATH=../srcdoc
-OUTPUT=\
- index.html \
- install.html \
- benchmarks.html \
- configure.html \
- configure/quick_start.html \
- configure/command_options.html \
- configure/syntax_and_structure.html \
- configure/base_directives.html \
- configure/compress_directives.html \
- configure/http1_directives.html \
- configure/http2_directives.html \
- configure/access_log_directives.html \
- configure/errordoc_directives.html \
- configure/expires_directives.html \
- configure/fastcgi_directives.html \
- configure/file_directives.html \
- configure/headers_directives.html \
- configure/mruby_directives.html \
- configure/proxy_directives.html \
- configure/redirect_directives.html \
- configure/reproxy_directives.html \
- configure/status_directives.html \
- configure/throttle_response_directives.html \
- configure/basic_auth.html \
- configure/cgi.html \
- configure/mruby.html \
- configure/dos_detection.html \
- configure/access_control.html \
- faq.html \
-
-%.html: %.mt snippets/directive.mt snippets/wrapper.mt
- ../misc/makedoc.pl $< $@
-
-all: mkdir html search/searchindex.js
-
-mkdir:
- mkdir -p doc/configure
-
-html: $(OUTPUT)
-
-search/searchindex.js: html
- ../misc/oktavia/bin/oktavia-mkindex $(patsubst %,-i %,$(OUTPUT)) -m html -u h2 -c 10 -t js -s english
-
-publish: all
- @if [ -z "$$PUBLISH" ] ; then \
- echo "environment variable PUBLISH not set" >&2 ; \
- exit 1; \
- fi
- tar cf - `git ls-files` | (cd $$PUBLISH && tar xf -)
-
-clean:
- rm -f $(OUTPUT) search/searchindex.js
-
-.PHONY: mkdir html publish publish-check do-publish