version 1.105, 2009/03/04 14:41:40 |
version 1.439, 2014/08/12 21:35:48 |
|
|
.SUFFIXES: .html .sgml |
# $Id$ |
|
# |
|
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv> |
|
# Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> |
|
# |
|
# Permission to use, copy, modify, and distribute this software for any |
|
# purpose with or without fee is hereby granted, provided that the above |
|
# copyright notice and this permission notice appear in all copies. |
|
# |
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
|
VERSION = 1.3.18 |
VERSION = 1.13.1 |
VDATE = 04 March 2009 |
|
|
|
BINDIR = $(PREFIX)/bin |
# === USER SETTINGS ==================================================== |
INCLUDEDIR = $(PREFIX)/include |
|
LIBDIR = $(PREFIX)/lib |
|
MANDIR = $(PREFIX)/man |
|
|
|
INSTALL_PROGRAM = install -m 0755 |
# --- user settings relevant for all builds ---------------------------- |
INSTALL_DATA = install -m 0444 |
|
INSTALL_LIB = install -m 0644 |
|
INSTALL_MAN = $(INSTALL_DATA) |
|
|
|
CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g |
# Specify this if you want to hard-code the operating system to appear |
|
# in the lower-left hand corner of -mdoc manuals. |
|
# |
|
# CFLAGS += -DOSNAME="\"OpenBSD 5.5\"" |
|
|
LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \ |
# IFF your system supports multi-byte functions (setlocale(), wcwidth(), |
validate.ln action.ln |
# putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a |
|
# UCS-4 value) should you define USE_WCHAR. If you define it and your |
|
# system DOESN'T support this, -Tlocale will produce garbage. |
|
# If you don't define it, -Tlocale is a synonym for -Tascii. |
|
# |
|
CFLAGS += -DUSE_WCHAR |
|
|
TREELNS = mdoctree.ln mmain.ln |
CFLAGS += -g -W -Wall -Wstrict-prototypes |
|
CFLAGS += -Wno-unused-parameter -Wwrite-strings |
|
PREFIX = /usr/local |
|
BINDIR = $(PREFIX)/bin |
|
INCLUDEDIR = $(PREFIX)/include/mandoc |
|
LIBDIR = $(PREFIX)/lib/mandoc |
|
MANDIR = $(PREFIX)/man |
|
EXAMPLEDIR = $(PREFIX)/share/examples/mandoc |
|
|
TERMLNS = mdoctree.ln mmain.ln term.ln |
INSTALL = install |
|
INSTALL_PROGRAM = $(INSTALL) -m 0555 |
|
INSTALL_DATA = $(INSTALL) -m 0444 |
|
INSTALL_LIB = $(INSTALL) -m 0444 |
|
INSTALL_SOURCE = $(INSTALL) -m 0644 |
|
INSTALL_MAN = $(INSTALL_DATA) |
|
|
LINTLNS = mdoclint.ln mmain.ln |
# --- user settings related to database support ------------------------ |
|
|
LNS = $(LIBLNS) $(TREELNS) $(TERMLNS) |
# Building apropos(1) and makewhatis(8) requires SQLite3. |
|
# To avoid that dependency, comment the following line. |
|
# |
|
BUILD_TARGETS += db-build |
|
|
LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln |
# The remaining settings in this section |
|
# are only relevant if db-build is enabled. |
|
# Otherwise, they have no effect either way. |
|
|
LIBS = libmdoc.a |
# If your system has manpath(1), uncomment this. This is most any |
|
# system that's not OpenBSD or NetBSD. If uncommented, apropos(1) |
|
# and makewhatis(8) will use manpath(1) to get the MANPATH variable. |
|
# |
|
#CFLAGS += -DUSE_MANPATH |
|
|
LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \ |
# On some systems, SQLite3 may be installed below /usr/local. |
validate.o action.o |
# In that case, uncomment the following two lines. |
|
# |
|
#CFLAGS += -I/usr/local/include |
|
#DBLIB += -L/usr/local/lib |
|
|
TERMOBJS= mdocterm.o mmain.o term.o |
# OpenBSD has the ohash functions in libutil. |
|
# Comment the following line if your system doesn't. |
|
# |
|
DBLIB += -lutil |
|
|
TREEOBJS= mdoctree.o mmain.o |
SBINDIR = $(PREFIX)/sbin |
|
|
LINTOBJS= mdoclint.o mmain.o |
# --- user settings related to man.cgi --------------------------------- |
|
|
OBJS = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) |
# To build man.cgi, copy cgi.h.example to cgi.h, edit it, |
|
# and enable the following line. |
|
# Obviously, this requires that db-build is enabled, too. |
|
# |
|
#BUILD_TARGETS += cgi-build |
|
|
SRCS = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \ |
# The remaining settings in this section |
action.c term.c mdoctree.c mdocterm.c mmain.c mdoclint.c |
# are only relevant if cgi-build is enabled. |
|
# Otherwise, they have no effect either way. |
|
|
HEADS = mdoc.h private.h term.h mmain.h |
# If your system does not support static binaries, comment this, |
|
# for example on Mac OS X. |
|
# |
|
STATIC = -static |
|
|
SGMLS = index.sgml |
# Linux requires -pthread for statical linking. |
|
# |
|
#STATIC += -pthread |
|
|
HTMLS = index.html |
WWWPREFIX = /var/www |
|
HTDOCDIR = $(WWWPREFIX)/htdocs |
|
CGIBINDIR = $(WWWPREFIX)/cgi-bin |
|
|
STATICS = style.css external.png |
# === END OF USER SETTINGS ============================================= |
|
|
TARGZS = mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz \ |
INSTALL_TARGETS = $(BUILD_TARGETS:-build=-install) |
mdocml-nport-$(VERSION).tar.gz |
|
|
|
MANS = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3 |
BASEBIN = mandoc preconv demandoc |
|
DBBIN = apropos makewhatis |
|
CGIBIN = man.cgi |
|
|
BINS = mdocterm mdoctree mdoclint |
DBLIB += -lsqlite3 |
|
|
CLEAN = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \ |
TESTSRCS = test-dirent-namlen.c \ |
$(TARGZS) |
test-fgetln.c \ |
|
test-fts.c \ |
|
test-getsubopt.c \ |
|
test-mmap.c \ |
|
test-ohash.c \ |
|
test-reallocarray.c \ |
|
test-sqlite3_errstr.c \ |
|
test-strcasestr.c \ |
|
test-strlcat.c \ |
|
test-strlcpy.c \ |
|
test-strptime.c \ |
|
test-strsep.c |
|
|
INSTALL = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \ |
SRCS = apropos.c \ |
$(STATICS) Makefile.netbsd Makefile.openbsd |
arch.c \ |
|
att.c \ |
|
cgi.c \ |
|
chars.c \ |
|
compat_fgetln.c \ |
|
compat_fts.c \ |
|
compat_getsubopt.c \ |
|
compat_ohash.c \ |
|
compat_reallocarray.c \ |
|
compat_sqlite3_errstr.c \ |
|
compat_strcasestr.c \ |
|
compat_strlcat.c \ |
|
compat_strlcpy.c \ |
|
compat_strsep.c \ |
|
demandoc.c \ |
|
eqn.c \ |
|
eqn_html.c \ |
|
eqn_term.c \ |
|
html.c \ |
|
lib.c \ |
|
main.c \ |
|
man.c \ |
|
man_hash.c \ |
|
man_html.c \ |
|
man_macro.c \ |
|
man_term.c \ |
|
man_validate.c \ |
|
mandoc.c \ |
|
mandoc_aux.c \ |
|
mandocdb.c \ |
|
manpage.c \ |
|
manpath.c \ |
|
mansearch.c \ |
|
mansearch_const.c \ |
|
mdoc.c \ |
|
mdoc_argv.c \ |
|
mdoc_hash.c \ |
|
mdoc_html.c \ |
|
mdoc_macro.c \ |
|
mdoc_man.c \ |
|
mdoc_term.c \ |
|
mdoc_validate.c \ |
|
msec.c \ |
|
out.c \ |
|
preconv.c \ |
|
read.c \ |
|
roff.c \ |
|
st.c \ |
|
tbl.c \ |
|
tbl_data.c \ |
|
tbl_html.c \ |
|
tbl_layout.c \ |
|
tbl_opts.c \ |
|
tbl_term.c \ |
|
term.c \ |
|
term_ascii.c \ |
|
term_ps.c \ |
|
tree.c \ |
|
vol.c \ |
|
$(TESTSRCS) |
|
|
FAIL = regress/test.empty \ |
DISTFILES = INSTALL \ |
regress/test.prologue.00 \ |
LICENSE \ |
regress/test.prologue.01 \ |
Makefile \ |
regress/test.prologue.02 \ |
Makefile.depend \ |
regress/test.prologue.03 \ |
NEWS \ |
regress/test.prologue.04 \ |
TODO \ |
regress/test.prologue.06 \ |
apropos.1 \ |
regress/test.prologue.13 \ |
arch.in \ |
regress/test.prologue.15 \ |
att.in \ |
regress/test.prologue.16 \ |
cgi.h.example \ |
regress/test.prologue.18 \ |
chars.in \ |
regress/test.prologue.19 \ |
compat_fts.h \ |
regress/test.prologue.21 \ |
compat_ohash.h \ |
regress/test.prologue.22 \ |
config.h.post \ |
regress/test.prologue.23 \ |
config.h.pre \ |
regress/test.prologue.24 \ |
configure \ |
regress/test.prologue.25 \ |
demandoc.1 \ |
regress/test.prologue.26 \ |
eqn.7 \ |
regress/test.prologue.27 \ |
example.style.css \ |
regress/test.prologue.28 \ |
gmdiff \ |
regress/test.prologue.29 \ |
html.h \ |
regress/test.prologue.30 \ |
lib.in \ |
regress/test.prologue.31 \ |
libman.h \ |
regress/test.prologue.32 \ |
libmandoc.h \ |
regress/test.prologue.33 \ |
libmdoc.h \ |
regress/test.sh.03 \ |
libroff.h \ |
regress/test.escape.01 \ |
main.h \ |
regress/test.escape.02 \ |
makewhatis.8 \ |
regress/test.escape.03 \ |
man-cgi.css \ |
regress/test.escape.04 \ |
man.7 \ |
regress/test.escape.06 \ |
man.cgi.8 \ |
regress/test.escape.07 \ |
man.h \ |
regress/test.escape.08 \ |
mandoc.1 \ |
regress/test.escape.09 \ |
mandoc.3 \ |
regress/test.escape.11 \ |
mandoc.db.5 \ |
regress/test.escape.12 \ |
mandoc.h \ |
regress/test.escape.14 |
mandoc_aux.h \ |
|
mandoc_char.7 \ |
|
mandoc_escape.3 \ |
|
mandoc_html.3 \ |
|
mandoc_malloc.3 \ |
|
manpath.h \ |
|
mansearch.3 \ |
|
mansearch.h \ |
|
mchars_alloc.3 \ |
|
mdoc.7 \ |
|
mdoc.h \ |
|
msec.in \ |
|
out.h \ |
|
preconv.1 \ |
|
predefs.in \ |
|
roff.7 \ |
|
st.in \ |
|
style.css \ |
|
tbl.3 \ |
|
tbl.7 \ |
|
term.h \ |
|
vol.in \ |
|
$(SRCS) |
|
|
SUCCEED = regress/test.prologue.05 \ |
LIBMAN_OBJS = man.o \ |
regress/test.prologue.07 \ |
man_hash.o \ |
regress/test.prologue.08 \ |
man_macro.o \ |
regress/test.prologue.09 \ |
man_validate.o |
regress/test.prologue.10 \ |
|
regress/test.prologue.11 \ |
|
regress/test.prologue.12 \ |
|
regress/test.prologue.14 \ |
|
regress/test.prologue.17 \ |
|
regress/test.prologue.20 \ |
|
regress/test.sh.00 \ |
|
regress/test.name.00 \ |
|
regress/test.name.01 \ |
|
regress/test.name.02 \ |
|
regress/test.name.03 \ |
|
regress/test.list.00 \ |
|
regress/test.list.01 \ |
|
regress/test.list.02 \ |
|
regress/test.list.03 \ |
|
regress/test.list.04 \ |
|
regress/test.list.05 \ |
|
regress/test.list.06 \ |
|
regress/test.list.07 \ |
|
regress/test.sh.01 \ |
|
regress/test.sh.02 \ |
|
regress/test.escape.00 \ |
|
regress/test.escape.05 \ |
|
regress/test.escape.10 \ |
|
regress/test.escape.13 |
|
|
|
REGRESS = $(FAIL) $(SUCCEED) |
LIBMDOC_OBJS = arch.o \ |
|
att.o \ |
|
lib.o \ |
|
mdoc.o \ |
|
mdoc_argv.o \ |
|
mdoc_hash.o \ |
|
mdoc_macro.o \ |
|
mdoc_validate.o \ |
|
st.o \ |
|
vol.o |
|
|
all: $(BINS) |
LIBROFF_OBJS = eqn.o \ |
|
roff.o \ |
|
tbl.o \ |
|
tbl_data.o \ |
|
tbl_layout.o \ |
|
tbl_opts.o |
|
|
lint: $(LLNS) |
LIBMANDOC_OBJS = $(LIBMAN_OBJS) \ |
|
$(LIBMDOC_OBJS) \ |
|
$(LIBROFF_OBJS) \ |
|
chars.o \ |
|
mandoc.o \ |
|
mandoc_aux.o \ |
|
msec.o \ |
|
read.o |
|
|
clean: |
COMPAT_OBJS = compat_fgetln.o \ |
rm -f $(CLEAN) |
compat_fts.o \ |
|
compat_getsubopt.o \ |
|
compat_ohash.o \ |
|
compat_reallocarray.o \ |
|
compat_sqlite3_errstr.o \ |
|
compat_strcasestr.o \ |
|
compat_strlcat.o \ |
|
compat_strlcpy.o \ |
|
compat_strsep.o |
|
|
cleanlint: |
MANDOC_HTML_OBJS = eqn_html.o \ |
rm -f $(LNS) $(LLNS) |
html.o \ |
|
man_html.o \ |
|
mdoc_html.o \ |
|
tbl_html.o |
|
|
dist: mdocml-$(VERSION).tar.gz |
MANDOC_MAN_OBJS = mdoc_man.o |
|
|
port: mdocml-oport-$(VERSION).tar.gz mdocml-nport-$(VERSION).tar.gz |
MANDOC_TERM_OBJS = eqn_term.o \ |
|
man_term.o \ |
|
mdoc_term.o \ |
|
term.o \ |
|
term_ascii.o \ |
|
term_ps.o \ |
|
tbl_term.o |
|
|
www: $(HTMLS) $(TARGZS) |
MANDOC_OBJS = $(MANDOC_HTML_OBJS) \ |
|
$(MANDOC_MAN_OBJS) \ |
|
$(MANDOC_TERM_OBJS) \ |
|
main.o \ |
|
out.o \ |
|
tree.o |
|
|
installwww: www |
MAKEWHATIS_OBJS = mandocdb.o mansearch_const.o manpath.o |
install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/ |
|
install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/ |
|
install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz |
|
install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/ |
|
install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/mdocml.tar.gz |
|
install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/ |
|
install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/mdocml.tar.gz |
|
|
|
regress: mdoclint |
PRECONV_OBJS = preconv.o |
@for f in $(FAIL); do \ |
|
echo "./mdoclint $$f" ; \ |
|
./mdoclint $$f 2>/dev/null || continue ; exit 1 ; done |
|
@for f in $(SUCCEED); do \ |
|
echo "./mdoclint $$f" ; \ |
|
./mdoclint $$f 2>/dev/null || exit 1 ; done |
|
|
|
install: |
APROPOS_OBJS = apropos.o mansearch.o mansearch_const.o manpath.o |
mkdir -p $(BINDIR) |
|
mkdir -p $(INCLUDEDIR) |
|
mkdir -p $(LIBDIR)/lib |
|
mkdir -p $(MANDIR)/man1 |
|
mkdir -p $(MANDIR)/man3 |
|
$(INSTALL_PROGRAM) mdocterm $(BINDIR) |
|
$(INSTALL_PROGRAM) mdoctree $(BINDIR) |
|
$(INSTALL_PROGRAM) mdoclint $(BINDIR) |
|
$(INSTALL_MAN) mdocterm.1 $(MANDIR)/man1 |
|
$(INSTALL_MAN) mdoctree.1 $(MANDIR)/man1 |
|
$(INSTALL_MAN) mdoclint.1 $(MANDIR)/man1 |
|
$(INSTALL_MAN) mdoc.3 $(MANDIR)/man3 |
|
$(INSTALL_LIB) libmdoc.a $(LIBDIR) |
|
$(INSTALL_DATA) mdoc.h $(INCLUDEDIR) |
|
|
|
uninstall: |
CGI_OBJS = $(MANDOC_HTML_OBJS) \ |
rm -f $(BINDIR)/mdocterm |
cgi.o \ |
rm -f $(BINDIR)/mdoctree |
mansearch.o \ |
rm -f $(BINDIR)/mdoclint |
mansearch_const.o \ |
rm -f $(MANDIR)/man1/mdocterm.1 |
out.o |
rm -f $(MANDIR)/man1/mdoctree.1 |
|
rm -f $(MANDIR)/man1/mdoclint.1 |
|
rm -f $(MANDIR)/man3/mdoc.3 |
|
rm -f $(LIBDIR)/libmdoc.a |
|
rm -f $(INCLUDEDIR)/mdoc.h |
|
|
|
macro.ln: macro.c private.h |
MANPAGE_OBJS = manpage.o mansearch.o mansearch_const.o manpath.o |
macro.o: macro.c private.h |
|
|
|
term.ln: term.c term.h |
DEMANDOC_OBJS = demandoc.o |
term.o: term.c term.h |
|
|
|
strings.ln: strings.c private.h |
WWW_MANS = apropos.1.html \ |
strings.o: strings.c private.h |
demandoc.1.html \ |
|
mandoc.1.html \ |
|
preconv.1.html \ |
|
mandoc.3.html \ |
|
mandoc_escape.3.html \ |
|
mandoc_html.3.html \ |
|
mandoc_malloc.3.html \ |
|
mansearch.3.html \ |
|
mchars_alloc.3.html \ |
|
tbl.3.html \ |
|
mandoc.db.5.html \ |
|
eqn.7.html \ |
|
man.7.html \ |
|
mandoc_char.7.html \ |
|
mdoc.7.html \ |
|
roff.7.html \ |
|
tbl.7.html \ |
|
makewhatis.8.html \ |
|
man.cgi.8.html \ |
|
man.h.html \ |
|
mandoc.h.html \ |
|
mandoc_aux.h.html \ |
|
manpath.h.html \ |
|
mansearch.h.html \ |
|
mdoc.h.html |
|
|
hash.ln: hash.c private.h |
WWW_OBJS = mdocml.tar.gz \ |
hash.o: hash.c private.h |
mdocml.sha256 |
|
|
mdoc.ln: mdoc.c private.h |
# === DEPENDENCY HANDLING ============================================== |
mdoc.o: mdoc.c private.h |
|
|
|
mdocterm.ln: mdocterm.c mmain.h |
all: base-build $(BUILD_TARGETS) |
mdocterm.o: mdocterm.c mmain.h |
|
|
|
mdoclint.ln: mdoclint.c mmain.h |
base-build: $(BASEBIN) |
mdoclint.o: mdoclint.c mmain.h |
|
|
|
mdoctree.ln: mdoctree.c mmain.h |
db-build: $(DBBIN) |
mdoctree.o: mdoctree.c mmain.h |
|
|
|
xstd.ln: xstd.c private.h |
cgi-build: $(CGIBIN) |
xstd.o: xstd.c private.h |
|
|
|
argv.ln: argv.c private.h |
install: base-install $(INSTALL_TARGETS) |
argv.o: argv.c private.h |
|
|
|
validate.ln: validate.c private.h |
www: $(WWW_OBJS) $(WWW_MANS) |
validate.o: validate.c private.h |
|
|
|
action.ln: action.c private.h |
include Makefile.depend |
action.o: action.c private.h |
|
|
|
mmain.ln: mmain.c mmain.h |
# === TARGETS CONTAINING SHELL COMMANDS ================================ |
mmain.o: mmain.c mmain.h |
|
|
|
private.h: mdoc.h |
clean: |
|
rm -f libmandoc.a $(LIBMANDOC_OBJS) |
|
rm -f apropos $(APROPOS_OBJS) |
|
rm -f makewhatis $(MAKEWHATIS_OBJS) |
|
rm -f preconv $(PRECONV_OBJS) |
|
rm -f man.cgi $(CGI_OBJS) |
|
rm -f manpage $(MANPAGE_OBJS) |
|
rm -f demandoc $(DEMANDOC_OBJS) |
|
rm -f mandoc $(MANDOC_OBJS) |
|
rm -f config.h config.log $(COMPAT_OBJS) |
|
rm -f $(WWW_MANS) $(WWW_OBJS) |
|
rm -rf *.dSYM |
|
|
mmain.h: mdoc.h |
base-install: base-build |
|
mkdir -p $(DESTDIR)$(BINDIR) |
|
mkdir -p $(DESTDIR)$(EXAMPLEDIR) |
|
mkdir -p $(DESTDIR)$(LIBDIR) |
|
mkdir -p $(DESTDIR)$(INCLUDEDIR) |
|
mkdir -p $(DESTDIR)$(MANDIR)/man1 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man3 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man7 |
|
$(INSTALL_PROGRAM) $(BASEBIN) $(DESTDIR)$(BINDIR) |
|
$(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR) |
|
$(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \ |
|
$(DESTDIR)$(INCLUDEDIR) |
|
$(INSTALL_MAN) mandoc.1 preconv.1 demandoc.1 $(DESTDIR)$(MANDIR)/man1 |
|
$(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \ |
|
mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3 |
|
$(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 \ |
|
$(DESTDIR)$(MANDIR)/man7 |
|
$(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR) |
|
|
term.h: mdoc.h |
db-install: db-build |
|
mkdir -p $(DESTDIR)$(BINDIR) |
|
mkdir -p $(DESTDIR)$(SBINDIR) |
|
mkdir -p $(DESTDIR)$(MANDIR)/man1 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man3 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man5 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man8 |
|
$(INSTALL_PROGRAM) apropos $(DESTDIR)$(BINDIR) |
|
ln -f $(DESTDIR)$(BINDIR)/apropos $(DESTDIR)$(BINDIR)/whatis |
|
$(INSTALL_PROGRAM) makewhatis $(DESTDIR)$(SBINDIR) |
|
$(INSTALL_MAN) apropos.1 $(DESTDIR)$(MANDIR)/man1 |
|
ln -f $(DESTDIR)$(MANDIR)/man1/apropos.1 \ |
|
$(DESTDIR)$(MANDIR)/man1/whatis.1 |
|
$(INSTALL_MAN) mansearch.3 $(DESTDIR)$(MANDIR)/man3 |
|
$(INSTALL_MAN) mandoc.db.5 $(DESTDIR)$(MANDIR)/man5 |
|
$(INSTALL_MAN) makewhatis.8 $(DESTDIR)$(MANDIR)/man8 |
|
|
mdocml-nport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.netbsd DESCR |
cgi-install: cgi-build |
mkdir -p .dist/mdocml/ |
mkdir -p $(DESTDIR)$(CGIBINDIR) |
sed -e "s!@VERSION@!$(VERSION)!" Makefile.netbsd > \ |
mkdir -p $(DESTDIR)$(HTDOCDIR) |
.dist/mdocml/Makefile |
mkdir -p $(DESTDIR)$(WWWPREFIX)/man/mandoc/man1 |
md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo |
mkdir -p $(DESTDIR)$(WWWPREFIX)/man/mandoc/man8 |
rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
$(INSTALL_PROGRAM) man.cgi $(DESTDIR)$(CGIBINDIR) |
sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
$(INSTALL_DATA) example.style.css $(DESTDIR)$(HTDOCDIR)/man.css |
install -m 0644 DESCR .dist/mdocml/ |
$(INSTALL_DATA) man-cgi.css $(DESTDIR)$(HTDOCDIR) |
echo @comment $$NetBSD$$ > .dist/mdocml/PLIST |
$(INSTALL_MAN) apropos.1 $(DESTDIR)$(WWWPREFIX)/man/mandoc/man1/ |
echo bin/mdocterm >> .dist/mdocml/PLIST |
$(INSTALL_MAN) man.cgi.8 $(DESTDIR)$(WWWPREFIX)/man/mandoc/man8/ |
echo bin/mdoctree >> .dist/mdocml/PLIST |
|
echo bin/mdoclint >> .dist/mdocml/PLIST |
|
echo lib/libmdoc.a >> .dist/mdocml/PLIST |
|
echo include/mdoc.h >> .dist/mdocml/PLIST |
|
echo man/man1/mdoctree.1 >> .dist/mdocml/PLIST |
|
echo man/man1/mdocterm.1 >> .dist/mdocml/PLIST |
|
echo man/man1/mdoclint.1 >> .dist/mdocml/PLIST |
|
echo man/man3/mdoc.3 >> .dist/mdocml/PLIST |
|
( cd .dist/ && tar zcf ../$@ mdocml/ ) |
|
rm -rf .dist/ |
|
|
|
mdocml-oport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.openbsd DESCR |
www-install: www |
mkdir -p .dist/mdocml/pkg |
mkdir -p $(DESTDIR)$(HTDOCDIR)/snapshots |
sed -e "s!@VERSION@!$(VERSION)!" Makefile.openbsd > \ |
$(INSTALL_DATA) $(WWW_MANS) style.css $(DESTDIR)$(HTDOCDIR) |
.dist/mdocml/Makefile |
$(INSTALL_DATA) $(WWW_OBJS) $(DESTDIR)$(HTDOCDIR)/snapshots |
md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo |
$(INSTALL_DATA) mdocml.tar.gz \ |
rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
$(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).tar.gz |
sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
$(INSTALL_DATA) mdocml.sha256 \ |
install -m 0644 DESCR .dist/mdocml/pkg/DESCR |
$(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).sha256 |
echo @comment $$OpenBSD$$ > .dist/mdocml/pkg/PLIST |
|
echo bin/mdocterm >> .dist/mdocml/pkg/PLIST |
|
echo bin/mdoctree >> .dist/mdocml/pkg/PLIST |
|
echo bin/mdoclint >> .dist/mdocml/pkg/PLIST |
|
echo lib/libmdoc.a >> .dist/mdocml/pkg/PLIST |
|
echo include/mdoc.h >> .dist/mdocml/pkg/PLIST |
|
echo @man man/man1/mdoctree.1 >> .dist/mdocml/pkg/PLIST |
|
echo @man man/man1/mdocterm.1 >> .dist/mdocml/pkg/PLIST |
|
echo @man man/man1/mdoclint.1 >> .dist/mdocml/pkg/PLIST |
|
echo @man man/man3/mdoc.3 >> .dist/mdocml/pkg/PLIST |
|
( cd .dist/ && tar zcf ../$@ mdocml/ ) |
|
rm -rf .dist/ |
|
|
|
mdocml-$(VERSION).tar.gz: $(INSTALL) |
depend: config.h |
mkdir -p .dist/mdocml/mdocml-$(VERSION)/ |
mkdep -f Makefile.depend $(CFLAGS) $(SRCS) |
mkdir -p .dist/mdocml/mdocml-$(VERSION)/regress/ |
perl -e 'undef $$/; $$_ = <>; s|/usr/include/\S+||g; \ |
install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/ |
s|\\\n||g; s| +| |g; print;' Makefile.depend > Makefile.tmp |
install -m 0644 $(REGRESS) .dist/mdocml/mdocml-$(VERSION)/regress/ |
mv Makefile.tmp Makefile.depend |
( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ ) |
|
rm -rf .dist/ |
|
|
|
llib-llibmdoc.ln: $(LIBLNS) |
libmandoc.a: $(COMPAT_OBJS) $(LIBMANDOC_OBJS) |
$(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS) |
$(AR) rs $@ $(COMPAT_OBJS) $(LIBMANDOC_OBJS) |
|
|
llib-lmdoctree.ln: $(TREELNS) llib-llibmdoc.ln |
mandoc: $(MANDOC_OBJS) libmandoc.a |
$(LINT) $(LINTFLAGS) -Cmdoctree $(TREELNS) llib-llibmdoc.ln |
$(CC) $(LDFLAGS) -o $@ $(MANDOC_OBJS) libmandoc.a |
|
|
llib-lmdocterm.ln: $(TERMLNS) llib-llibmdoc.ln |
makewhatis: $(MAKEWHATIS_OBJS) libmandoc.a |
$(LINT) $(LINTFLAGS) -Cmdocterm $(TERMLNS) llib-llibmdoc.ln |
$(CC) $(LDFLAGS) -o $@ $(MAKEWHATIS_OBJS) libmandoc.a $(DBLIB) |
|
|
libmdoc.a: $(LIBOBJS) |
preconv: $(PRECONV_OBJS) |
$(AR) rs $@ $(LIBOBJS) |
$(CC) $(LDFLAGS) -o $@ $(PRECONV_OBJS) |
|
|
mdocterm: $(TERMOBJS) libmdoc.a |
manpage: $(MANPAGE_OBJS) libmandoc.a |
$(CC) $(CFLAGS) -o $@ $(TERMOBJS) libmdoc.a |
$(CC) $(LDFLAGS) -o $@ $(MANPAGE_OBJS) libmandoc.a $(DBLIB) |
|
|
mdoctree: $(TREEOBJS) libmdoc.a |
apropos: $(APROPOS_OBJS) libmandoc.a |
$(CC) $(CFLAGS) -o $@ $(TREEOBJS) libmdoc.a |
$(CC) $(LDFLAGS) -o $@ $(APROPOS_OBJS) libmandoc.a $(DBLIB) |
|
|
mdoclint: $(LINTOBJS) libmdoc.a |
man.cgi: $(CGI_OBJS) libmandoc.a |
$(CC) $(CFLAGS) -o $@ $(LINTOBJS) libmdoc.a |
$(CC) $(LDFLAGS) $(STATIC) -o $@ $(CGI_OBJS) libmandoc.a $(DBLIB) |
|
|
.sgml.html: |
demandoc: $(DEMANDOC_OBJS) libmandoc.a |
validate $< |
$(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a |
sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@ |
|
|
|
|
mdocml.sha256: mdocml.tar.gz |
|
sha256 mdocml.tar.gz > $@ |
|
|
|
mdocml.tar.gz: $(DISTFILES) |
|
mkdir -p .dist/mdocml-$(VERSION)/ |
|
$(INSTALL_SOURCE) $(DISTFILES) .dist/mdocml-$(VERSION) |
|
chmod 755 .dist/mdocml-$(VERSION)/configure |
|
( cd .dist/ && tar zcf ../$@ mdocml-$(VERSION) ) |
|
rm -rf .dist/ |
|
|
|
config.h: configure config.h.pre config.h.post $(TESTSRCS) |
|
rm -f config.log |
|
CC="$(CC)" CFLAGS="$(CFLAGS)" DBLIB="$(DBLIB)" \ |
|
VERSION="$(VERSION)" ./configure |
|
|
|
.PHONY: base-install cgi-install db-install install www-install |
|
.PHONY: clean depend |
|
.SUFFIXES: .1 .3 .5 .7 .8 .h |
|
.SUFFIXES: .1.html .3.html .5.html .7.html .8.html .h.html |
|
|
|
.h.h.html: |
|
highlight -I $< > $@ |
|
|
|
.1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc |
|
./mandoc -Thtml -Wall,stop \ |
|
-Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@ |