version 1.113, 2009/03/09 13:17:49 |
version 1.321, 2011/03/22 13:28:03 |
|
|
.SUFFIXES: .html .sgml |
.PHONY: clean install installwww |
|
.SUFFIXES: .sgml .html .md5 .h .h.html |
|
.SUFFIXES: .1 .3 .7 |
|
.SUFFIXES: .1.txt .3.txt .7.txt |
|
.SUFFIXES: .1.pdf .3.pdf .7.pdf |
|
.SUFFIXES: .1.ps .3.ps .7.ps |
|
.SUFFIXES: .1.html .3.html .7.html |
|
.SUFFIXES: .1.xhtml .3.xhtml .7.xhtml |
|
|
VERSION = 1.4.5 |
# Specify this if you want to hard-code the operating system to appear |
VDATE = 9 March 2009 |
# in the lower-left hand corner of -mdoc manuals. |
|
# CFLAGS += -DOSNAME="\"OpenBSD 4.5\"" |
|
|
BINDIR = $(PREFIX)/bin |
VERSION = 1.10.10 |
INCLUDEDIR = $(PREFIX)/include |
VDATE = 20 March 2011 |
LIBDIR = $(PREFIX)/lib |
CFLAGS += -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\"" |
MANDIR = $(PREFIX)/man |
CFLAGS += -W -Wall -Wstrict-prototypes -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 |
|
INSTALL = install |
|
INSTALL_PROGRAM = $(INSTALL) -m 0755 |
|
INSTALL_DATA = $(INSTALL) -m 0444 |
|
INSTALL_LIB = $(INSTALL) -m 0644 |
|
INSTALL_MAN = $(INSTALL_DATA) |
|
|
INSTALL_PROGRAM = install -m 0755 |
all: mandoc |
INSTALL_DATA = install -m 0444 |
|
INSTALL_LIB = install -m 0644 |
|
INSTALL_MAN = $(INSTALL_DATA) |
|
|
|
VFLAGS = -DVERSION=\"$(VERSION)\" |
SRCS = Makefile \ |
CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g |
arch.c \ |
|
arch.in \ |
|
att.c \ |
|
att.in \ |
|
chars.c \ |
|
chars.in \ |
|
compat.c \ |
|
config.h.post \ |
|
config.h.pre \ |
|
eqn.7 \ |
|
eqn.c \ |
|
example.style.css \ |
|
external.png \ |
|
html.c \ |
|
html.h \ |
|
index.css \ |
|
index.sgml \ |
|
lib.c \ |
|
lib.in \ |
|
libman.h \ |
|
libmandoc.h \ |
|
libmdoc.h \ |
|
libroff.h \ |
|
main.c \ |
|
main.h \ |
|
man.7 \ |
|
man.c \ |
|
man_argv.c \ |
|
man_hash.c \ |
|
man_html.c \ |
|
man_macro.c \ |
|
man_term.c \ |
|
man_validate.c \ |
|
mandoc.1 \ |
|
mandoc.3 \ |
|
mandoc.c \ |
|
mandoc.h \ |
|
mandoc_char.7 \ |
|
mdoc.7 \ |
|
mdoc.c \ |
|
mdoc_argv.c \ |
|
mdoc_hash.c \ |
|
mdoc_html.c \ |
|
mdoc_macro.c \ |
|
mdoc_term.c \ |
|
mdoc_validate.c \ |
|
msec.c \ |
|
msec.in \ |
|
out.c \ |
|
out.h \ |
|
read.c \ |
|
roff.7 \ |
|
roff.c \ |
|
st.c \ |
|
st.in \ |
|
style.css \ |
|
tbl.7 \ |
|
tbl.c \ |
|
tbl_data.c \ |
|
tbl_html.c \ |
|
tbl_layout.c \ |
|
tbl_opts.c \ |
|
tbl_term.c \ |
|
term.c \ |
|
term.h \ |
|
term_ascii.c \ |
|
term_ps.c \ |
|
test-strlcat.c \ |
|
test-strlcpy.c \ |
|
tree.c \ |
|
vol.c \ |
|
vol.in |
|
|
LINTFLAGS += $(VFLAGS) |
LIBMAN_OBJS = man.o \ |
CFLAGS += $(VFLAGS) |
man_argv.o \ |
|
man_hash.o \ |
|
man_macro.o \ |
|
man_validate.o |
|
LIBMDOC_OBJS = arch.o \ |
|
att.o \ |
|
lib.o \ |
|
mdoc.o \ |
|
mdoc_argv.o \ |
|
mdoc_hash.o \ |
|
mdoc_macro.o \ |
|
mdoc_validate.o \ |
|
msec.o \ |
|
st.o \ |
|
vol.o |
|
LIBROFF_OBJS = eqn.o \ |
|
roff.o \ |
|
tbl.o \ |
|
tbl_data.o \ |
|
tbl_layout.o \ |
|
tbl_opts.o |
|
LIBMANDOC_OBJS = $(LIBMAN_OBJS) \ |
|
$(LIBMDOC_OBJS) \ |
|
$(LIBROFF_OBJS) \ |
|
mandoc.o \ |
|
read.o |
|
|
LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \ |
arch.o: arch.in |
validate.ln action.ln lib.ln att.ln arch.ln vol.ln \ |
att.o: att.in |
msec.ln st.ln |
lib.o: lib.in |
|
msec.o: msec.in |
|
st.o: st.in |
|
vol.o: vol.in |
|
|
TREELNS = mdoctree.ln mmain.ln |
$(LIBMAN_OBJS): libmdoc.h |
|
$(LIBMDOC_OBJS): libmdoc.h |
|
$(LIBROFF_OBJS): libroff.h |
|
$(LIBMANDOC_OBJS): mandoc.h mdoc.h man.h libmandoc.h config.h |
|
|
TERMLNS = mdoctree.ln mmain.ln term.ln |
MANDOC_HTML_OBJS = html.o \ |
|
man_html.o \ |
|
mdoc_html.o \ |
|
tbl_html.o |
|
MANDOC_TERM_OBJS = man_term.o \ |
|
mdoc_term.o \ |
|
term.o \ |
|
term_ascii.o \ |
|
term_ps.o \ |
|
tbl_term.o |
|
MANDOC_OBJS = $(MANDOC_HTML_OBJS) \ |
|
$(MANDOC_TERM_OBJS) \ |
|
chars.o \ |
|
main.o \ |
|
out.o \ |
|
tree.o |
|
|
LINTLNS = mdoclint.ln mmain.ln |
chars.o: chars.in |
|
|
LNS = $(LIBLNS) $(TREELNS) $(TERMLNS) |
$(MANDOC_HTML_OBJS): html.h |
|
$(MANDOC_TERM_OBJS): term.h |
|
$(MANDOC_OBJS): main.h mandoc.h mdoc.h man.h config.h out.h |
|
|
LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln |
compat.o: config.h |
|
|
LIBS = libmdoc.a |
INDEX_MANS = mandoc.1.html \ |
|
mandoc.1.xhtml \ |
|
mandoc.1.ps \ |
|
mandoc.1.pdf \ |
|
mandoc.1.txt \ |
|
mandoc.3.html \ |
|
mandoc.3.xhtml \ |
|
mandoc.3.ps \ |
|
mandoc.3.pdf \ |
|
mandoc.3.txt \ |
|
eqn.7.html \ |
|
eqn.7.xhtml \ |
|
eqn.7.ps \ |
|
eqn.7.pdf \ |
|
eqn.7.txt \ |
|
man.7.html \ |
|
man.7.xhtml \ |
|
man.7.ps \ |
|
man.7.pdf \ |
|
man.7.txt \ |
|
mandoc_char.7.html \ |
|
mandoc_char.7.xhtml \ |
|
mandoc_char.7.ps \ |
|
mandoc_char.7.pdf \ |
|
mandoc_char.7.txt \ |
|
mdoc.7.html \ |
|
mdoc.7.xhtml \ |
|
mdoc.7.ps \ |
|
mdoc.7.pdf \ |
|
mdoc.7.txt \ |
|
roff.7.html \ |
|
roff.7.xhtml \ |
|
roff.7.ps \ |
|
roff.7.pdf \ |
|
roff.7.txt \ |
|
tbl.7.html \ |
|
tbl.7.xhtml \ |
|
tbl.7.ps \ |
|
tbl.7.pdf \ |
|
tbl.7.txt |
|
|
LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \ |
$(INDEX_MANS): mandoc |
validate.o action.o lib.o att.o arch.o vol.o msec.o \ |
|
st.o |
|
|
|
TERMOBJS= mdocterm.o mmain.o term.o |
INDEX_OBJS = $(INDEX_MANS) \ |
|
man.h.html \ |
|
mandoc.h.html \ |
|
mdoc.h.html \ |
|
mdocml.tar.gz \ |
|
mdocml.md5 |
|
|
TREEOBJS= mdoctree.o mmain.o |
www: index.html |
|
|
LINTOBJS= mdoclint.o mmain.o |
|
|
|
OBJS = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) $(LINTOBJS) |
|
|
|
SRCS = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \ |
|
action.c term.c mdoctree.c mdocterm.c mmain.c mdoclint.c |
|
|
|
SCRIPTS = strings.sh |
|
|
|
DATAS = arch.in att.in lib.in msec.in st.in vol.in |
|
|
|
GEN = lib.c att.c arch.c vol.c msec.c st.c |
|
|
|
HEADS = mdoc.h private.h term.h mmain.h |
|
|
|
SGMLS = index.sgml |
|
|
|
HTMLS = index.html |
|
|
|
STATICS = style.css external.png |
|
|
|
TARGZS = mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz \ |
|
mdocml-nport-$(VERSION).tar.gz |
|
|
|
MANS = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3 |
|
|
|
BINS = mdocterm mdoctree mdoclint |
|
|
|
CLEAN = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \ |
|
$(TARGZS) $(GEN) |
|
|
|
INSTALL = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \ |
|
$(STATICS) $(SCRIPTS) Makefile.netbsd Makefile.openbsd \ |
|
$(DATAS) |
|
|
|
FAIL = regress/test.empty \ |
|
regress/test.prologue.00 \ |
|
regress/test.prologue.01 \ |
|
regress/test.prologue.02 \ |
|
regress/test.prologue.03 \ |
|
regress/test.prologue.04 \ |
|
regress/test.prologue.06 \ |
|
regress/test.prologue.19 \ |
|
regress/test.prologue.23 \ |
|
regress/test.prologue.24 \ |
|
regress/test.prologue.27 \ |
|
regress/test.prologue.28 \ |
|
regress/test.prologue.30 \ |
|
regress/test.prologue.31 \ |
|
regress/test.prologue.32 \ |
|
regress/test.sh.03 \ |
|
regress/test.escape.01 \ |
|
regress/test.escape.02 \ |
|
regress/test.escape.03 \ |
|
regress/test.escape.04 \ |
|
regress/test.escape.06 \ |
|
regress/test.escape.07 \ |
|
regress/test.escape.08 \ |
|
regress/test.escape.09 \ |
|
regress/test.escape.11 \ |
|
regress/test.escape.12 \ |
|
regress/test.escape.14 \ |
|
regress/test.argv.01 \ |
|
regress/test.argv.02 |
|
|
|
SUCCEED = regress/test.prologue.05 \ |
|
regress/test.prologue.07 \ |
|
regress/test.prologue.08 \ |
|
regress/test.prologue.09 \ |
|
regress/test.prologue.10 \ |
|
regress/test.prologue.11 \ |
|
regress/test.prologue.12 \ |
|
regress/test.prologue.13 \ |
|
regress/test.prologue.14 \ |
|
regress/test.prologue.15 \ |
|
regress/test.prologue.16 \ |
|
regress/test.prologue.17 \ |
|
regress/test.prologue.18 \ |
|
regress/test.prologue.20 \ |
|
regress/test.prologue.21 \ |
|
regress/test.prologue.22 \ |
|
regress/test.prologue.25 \ |
|
regress/test.prologue.26 \ |
|
regress/test.prologue.29 \ |
|
regress/test.prologue.33 \ |
|
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/test.argv.00 |
|
|
|
REGRESS = $(FAIL) $(SUCCEED) |
|
|
|
all: $(BINS) |
|
|
|
lint: $(LLNS) |
|
|
|
clean: |
clean: |
rm -f $(CLEAN) |
rm -f libmandoc.a $(LIBMANDOC_OBJS) |
|
rm -f mandoc $(MANDOC_OBJS) |
|
rm -f config.h compat.o config.log |
|
rm -f mdocml.tar.gz |
|
rm -f index.html $(INDEX_OBJS) |
|
|
cleanlint: |
install: all |
rm -f $(LNS) $(LLNS) |
mkdir -p $(DESTDIR)$(BINDIR) |
|
mkdir -p $(DESTDIR)$(EXAMPLEDIR) |
|
mkdir -p $(DESTDIR)$(MANDIR)/man1 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man3 |
|
mkdir -p $(DESTDIR)$(MANDIR)/man7 |
|
$(INSTALL_PROGRAM) mandoc $(DESTDIR)$(BINDIR) |
|
$(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)/ |
|
$(INSTALL_MAN) mandoc.1 $(DESTDIR)$(MANDIR)/man1 |
|
$(INSTALL_MAN) mandoc.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) |
|
|
dist: mdocml-$(VERSION).tar.gz |
|
|
|
port: mdocml-oport-$(VERSION).tar.gz mdocml-nport-$(VERSION).tar.gz |
|
|
|
www: $(HTMLS) $(TARGZS) |
|
|
|
installwww: www |
installwww: www |
install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/ |
mkdir -p $(PREFIX)/snapshots |
install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/ |
$(INSTALL_DATA) index.html external.png index.css $(PREFIX) |
install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz |
$(INSTALL_DATA) $(INDEX_MANS) style.css $(PREFIX) |
install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/ |
$(INSTALL_DATA) mandoc.h.html man.h.html mdoc.h.html $(PREFIX) |
install -m 0444 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ports-openbsd/mdocml.tar.gz |
$(INSTALL_DATA) mdocml.tar.gz $(PREFIX)/snapshots |
install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/ |
$(INSTALL_DATA) mdocml.md5 $(PREFIX)/snapshots |
install -m 0444 mdocml-nport-$(VERSION).tar.gz $(PREFIX)/ports-netbsd/mdocml.tar.gz |
$(INSTALL_DATA) mdocml.tar.gz $(PREFIX)/snapshots/mdocml-$(VERSION).tar.gz |
|
$(INSTALL_DATA) mdocml.md5 $(PREFIX)/snapshots/mdocml-$(VERSION).md5 |
|
|
regress: mdoclint $(FAIL) $(SUCCEED) |
libmandoc.a: compat.o $(LIBMANDOC_OBJS) |
@for f in $(FAIL); do \ |
$(AR) rs $@ compat.o $(LIBMANDOC_OBJS) |
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: |
mandoc: $(MANDOC_OBJS) libmandoc.a |
mkdir -p $(BINDIR) |
$(CC) -o $@ $(MANDOC_OBJS) libmandoc.a |
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: |
mdocml.md5: mdocml.tar.gz |
rm -f $(BINDIR)/mdocterm |
md5 mdocml.tar.gz >$@ |
rm -f $(BINDIR)/mdoctree |
|
rm -f $(BINDIR)/mdoclint |
|
rm -f $(MANDIR)/man1/mdocterm.1 |
|
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 |
|
|
|
lib.ln: lib.c private.h |
mdocml.tar.gz: $(SRCS) |
lib.o: lib.c private.h |
mkdir -p .dist/mdocml-$(VERSION)/ |
|
$(INSTALL) -m 0444 $(SRCS) .dist/mdocml-$(VERSION) |
att.ln: att.c private.h |
( cd .dist/ && tar zcf ../$@ ./ ) |
att.o: att.c private.h |
|
|
|
arch.ln: arch.c private.h |
|
arch.o: arch.c private.h |
|
|
|
vol.ln: vol.c private.h |
|
vol.o: vol.c private.h |
|
|
|
msec.ln: msec.c private.h |
|
msec.o: msec.c private.h |
|
|
|
st.ln: st.c private.h |
|
st.o: st.c private.h |
|
|
|
lib.c: lib.in strings.sh |
|
sh strings.sh -o $@ lib lib.in |
|
|
|
st.c: st.in strings.sh |
|
sh strings.sh -o $@ st st.in |
|
|
|
msec.c: msec.in strings.sh |
|
sh strings.sh -o $@ msec msec.in |
|
|
|
att.c: att.in strings.sh |
|
sh strings.sh -o $@ att att.in |
|
|
|
arch.c: arch.in strings.sh |
|
sh strings.sh -o $@ arch arch.in |
|
|
|
vol.c: vol.in strings.sh |
|
sh strings.sh -o $@ vol vol.in |
|
|
|
macro.ln: macro.c private.h |
|
macro.o: macro.c private.h |
|
|
|
term.ln: term.c term.h |
|
term.o: term.c term.h |
|
|
|
strings.ln: strings.c private.h |
|
strings.o: strings.c private.h |
|
|
|
hash.ln: hash.c private.h |
|
hash.o: hash.c private.h |
|
|
|
mdoc.ln: mdoc.c private.h |
|
mdoc.o: mdoc.c private.h |
|
|
|
mdocterm.ln: mdocterm.c mmain.h |
|
mdocterm.o: mdocterm.c mmain.h |
|
|
|
mdoclint.ln: mdoclint.c mmain.h |
|
mdoclint.o: mdoclint.c mmain.h |
|
|
|
mdoctree.ln: mdoctree.c mmain.h |
|
mdoctree.o: mdoctree.c mmain.h |
|
|
|
xstd.ln: xstd.c private.h |
|
xstd.o: xstd.c private.h |
|
|
|
argv.ln: argv.c private.h |
|
argv.o: argv.c private.h |
|
|
|
validate.ln: validate.c private.h |
|
validate.o: validate.c private.h |
|
|
|
action.ln: action.c private.h |
|
action.o: action.c private.h |
|
|
|
mmain.ln: mmain.c mmain.h |
|
mmain.o: mmain.c mmain.h |
|
|
|
private.h: mdoc.h |
|
|
|
mmain.h: mdoc.h |
|
|
|
term.h: mdoc.h |
|
|
|
mdocml-nport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.netbsd DESCR |
|
mkdir -p .dist/mdocml/ |
|
sed -e "s!@VERSION@!$(VERSION)!" Makefile.netbsd > \ |
|
.dist/mdocml/Makefile |
|
md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo |
|
rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
|
sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
|
install -m 0644 DESCR .dist/mdocml/ |
|
echo @comment $$NetBSD$$ > .dist/mdocml/PLIST |
|
echo bin/mdocterm >> .dist/mdocml/PLIST |
|
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/ |
rm -rf .dist/ |
|
|
mdocml-oport-$(VERSION).tar.gz: mdocml-$(VERSION).tar.gz Makefile.openbsd DESCR |
index.html: $(INDEX_OBJS) |
mkdir -p .dist/mdocml/pkg |
|
sed -e "s!@VERSION@!$(VERSION)!" Makefile.openbsd > \ |
|
.dist/mdocml/Makefile |
|
md5 mdocml-$(VERSION).tar.gz > .dist/mdocml/distinfo |
|
rmd160 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
|
sha1 mdocml-$(VERSION).tar.gz >> .dist/mdocml/distinfo |
|
install -m 0644 DESCR .dist/mdocml/pkg/DESCR |
|
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) |
config.h: config.h.pre config.h.post |
mkdir -p .dist/mdocml/mdocml-$(VERSION)/ |
rm -f config.log |
mkdir -p .dist/mdocml/mdocml-$(VERSION)/regress/ |
( cat config.h.pre; \ |
install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/ |
echo; \ |
install -m 0644 $(REGRESS) .dist/mdocml/mdocml-$(VERSION)/regress/ |
if $(CC) $(CFLAGS) -Werror -o test-strlcat test-strlcat.c >> config.log 2>&1; then \ |
( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ ) |
echo '#define HAVE_STRLCAT'; \ |
rm -rf .dist/ |
rm test-strlcat; \ |
|
fi; \ |
|
if $(CC) $(CFLAGS) -Werror -o test-strlcpy test-strlcpy.c >> config.log 2>&1; then \ |
|
echo '#define HAVE_STRLCPY'; \ |
|
rm test-strlcpy; \ |
|
fi; \ |
|
echo; \ |
|
cat config.h.post \ |
|
) > $@ |
|
|
llib-llibmdoc.ln: $(LIBLNS) |
.h.h.html: |
$(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS) |
highlight -I $< >$@ |
|
|
llib-lmdoctree.ln: $(TREELNS) llib-llibmdoc.ln |
.1.1.txt .3.3.txt .7.7.txt: |
$(LINT) $(LINTFLAGS) -Cmdoctree $(TREELNS) llib-llibmdoc.ln |
./mandoc -Tascii -Wall,stop $< | col -b >$@ |
|
|
llib-lmdocterm.ln: $(TERMLNS) llib-llibmdoc.ln |
.1.1.html .3.3.html .7.7.html: |
$(LINT) $(LINTFLAGS) -Cmdocterm $(TERMLNS) llib-llibmdoc.ln |
./mandoc -Thtml -Wall,stop -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< >$@ |
|
|
libmdoc.a: $(LIBOBJS) |
.1.1.ps .3.3.ps .7.7.ps: |
$(AR) rs $@ $(LIBOBJS) |
./mandoc -Tps -Wall,stop $< >$@ |
|
|
mdocterm: $(TERMOBJS) libmdoc.a |
.1.1.xhtml .3.3.xhtml .7.7.xhtml: |
$(CC) $(CFLAGS) -o $@ $(TERMOBJS) libmdoc.a |
./mandoc -Txhtml -Wall,stop -Ostyle=style.css,man=%N.%S.xhtml,includes=%I.html $< >$@ |
|
|
mdoctree: $(TREEOBJS) libmdoc.a |
.1.1.pdf .3.3.pdf .7.7.pdf: |
$(CC) $(CFLAGS) -o $@ $(TREEOBJS) libmdoc.a |
./mandoc -Tpdf -Wall,stop $< >$@ |
|
|
mdoclint: $(LINTOBJS) libmdoc.a |
|
$(CC) $(CFLAGS) -o $@ $(LINTOBJS) libmdoc.a |
|
|
|
.sgml.html: |
.sgml.html: |
validate $< |
validate --warn $< |
sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@ |
sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< >$@ |
|
|