aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-08-05 01:46:07 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-08-05 01:46:07 +0000
commit16feb08f593484f8db8247f07c45204f4defb2ba (patch)
treefe9a53590a00528b481af8762d42615002c2e75d
parentfad444e70150058e0b8fe5ee48363a3f45fd8ba4 (diff)
downloadmandoc-16feb08f593484f8db8247f07c45204f4defb2ba.tar.gz
mandoc-16feb08f593484f8db8247f07c45204f4defb2ba.tar.zst
mandoc-16feb08f593484f8db8247f07c45204f4defb2ba.zip
Various minor corrections:
* Do not install programs and libs root-writeable. * Add missing test-strcasestr.c and test-strsep.c to TESTSRCS. * Add missing mandoc_html.3 to SRCS. * Add missing mandoc_html.3.html to WWW_MANS.
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 650b72a3..62c4378e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.395.2.21 2014/08/05 01:07:42 schwarze Exp $
+# $Id: Makefile,v 1.395.2.22 2014/08/05 01:46:07 schwarze Exp $
#
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
# Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -44,9 +44,9 @@ MANDIR = $(PREFIX)/man
EXAMPLEDIR = $(PREFIX)/share/examples/mandoc
INSTALL = install
-INSTALL_PROGRAM = $(INSTALL) -m 0755
+INSTALL_PROGRAM = $(INSTALL) -m 0555
INSTALL_DATA = $(INSTALL) -m 0444
-INSTALL_LIB = $(INSTALL) -m 0644
+INSTALL_LIB = $(INSTALL) -m 0444
INSTALL_SOURCE = $(INSTALL) -m 0644
INSTALL_MAN = $(INSTALL_DATA)
@@ -82,9 +82,11 @@ TESTSRCS = test-betoh64.c \
test-getsubopt.c \
test-mmap.c \
test-reallocarray.c \
+ test-strcasestr.c \
test-strlcat.c \
test-strlcpy.c \
- test-strptime.c
+ test-strptime.c \
+ test-strsep.c
SRCS = LICENSE \
Makefile \
@@ -143,6 +145,7 @@ SRCS = LICENSE \
mandoc_aux.c \
mandoc_aux.h \
mandoc_char.7 \
+ mandoc_html.3 \
mandocdb.8 \
mandocdb.c \
mandocdb.h \
@@ -292,6 +295,7 @@ WWW_MANS = apropos.1.html \
preconv.1.html \
whatis.1.html \
mandoc.3.html \
+ mandoc_html.3.html \
tbl.3.html \
eqn.7.html \
man.7.html \