ec1a42aa3c
Yaws is a HTTP high perfomance 1.1 webserver particularly well suited for dynamic-content web applications. Two separate modes of operations are supported: * Standalone mode where Yaws runs as a regular webserver daemon. This is the default mode. * Embedded mode where Yaws runs as an embedded webserver in another Erlang application. Yaws is entirely written in Erlang, and furthermore it is a multithreaded webserver where one Erlang lightweight process is used to handle each client. ok aja@
26 lines
829 B
Plaintext
26 lines
829 B
Plaintext
$OpenBSD: patch-doc_Makefile,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
|
|
|
|
Only build and install the postscript file, as generating the
|
|
pdf file make ghostscript unhappy.
|
|
|
|
--- doc/Makefile.orig Tue Dec 21 16:03:07 2010
|
|
+++ doc/Makefile Tue Dec 21 16:03:23 2010
|
|
@@ -8,7 +8,7 @@ IMG_PDF = $(IMG_EPS:.eps=.pdf)
|
|
all debug:
|
|
echo "To build the docs, please use make docs before doing make install"
|
|
|
|
-docs: check yaws.ps yaws.pdf
|
|
+docs: yaws.ps# yaws.pdf
|
|
|
|
check:
|
|
@if [ -z "$(DVIPS)" ]; then \
|
|
@@ -43,6 +43,6 @@ clean:
|
|
rm -f *.ps *.dvi *.log *.aux *.pdf *.toc *.beam 2> /dev/null || true
|
|
|
|
install:
|
|
- -install -d $(DESTDIR)$(PREFIX)/share/doc/yaws-$(YAWS_VSN)
|
|
- -cp yaws.pdf $(DESTDIR)$(PREFIX)/share/doc/yaws-$(YAWS_VSN)
|
|
+ -install -d $(DESTDIR)$(PREFIX)/share/doc/yaws/
|
|
+ -cp yaws.ps $(DESTDIR)$(PREFIX)/share/doc/yaws/
|
|
|