-LIBS = libmdocml.a
-
-OBJS = mdocml.o html.o xml.o libmdocml.o roff.o ml.o mlg.o \
- compat.o tokens.o literals.o tags.o
-
-SRCS = mdocml.c html.c xml.c libmdocml.c roff.c ml.c mlg.c \
- compat.c tokens.c literals.c tags.c
-
-HEADS = libmdocml.h private.h ml.h roff.h html.h
-
-MANS = mdocml.1 index.7
-
-HTML = index.html mdocml.html
-
-XML = index.xml
-
-TEXT = index.txt
-
-CLEAN = mdocml mdocml.tgz $(LLNS) $(LNS) $(OBJS) $(LIBS) $(HTML) \
- $(XML) $(TEXT)
-
-INSTALL = Makefile $(HEADS) $(SRCS) $(MANS)
-
-FAIL = test.0 test.1 test.2 test.3 test.4 test.5 test.6 \
- test.15 test.20 test.22 test.24 test.26 test.27 test.30 \
- test.36 test.37 test.40 test.50 test.61 test.64 test.65 \
- test.66 test.69 test.70
-
-SUCCEED = test.7 test.8 test.9 test.10 test.11 test.12 test.13 \
- test.14 test.16 test.17 test.18 test.19 test.21 test.23 \
- test.25 test.28 test.29 test.31 test.32 test.33 test.34 \
- test.35 test.38 test.39 test.41 test.42 test.43 test.44 \
- test.45 test.46 test.47 test.48 test.49 test.51 test.52 \
- test.54 test.55 test.56 test.57 test.58 test.59 test.60 \
- test.62 test.63 test.67 test.68 test.71
-
-all: mdocml
-
-lint: llib-lmdocml.ln
-
-dist: mdocml.tgz mdocml-port.tgz
-
-www: all $(HTML) $(XML) $(TEXT)
-
-regress: mdocml
- @for f in $(FAIL); do \
- echo "./mdocml $$f" ; \
- ./mdocml -v $$f 1>/dev/null 2>/dev/null || continue ; \
- done
- @for f in $(SUCCEED); do \
- echo "./mdocml $$f" ; \
- ./mdocml -v $$f 1>/dev/null || exit 1 ; \
- done
-
-mdocml: mdocml.o libmdocml.a
- $(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.a
+CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
+
+LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \
+ validate.ln action.ln
+
+TREELNS = mdoctree.ln mmain.ln
+
+TERMLNS = mdoctree.ln mmain.ln term.ln
+
+LINTLNS = mdoclint.ln mmain.ln
+
+LNS = $(LIBLNS) $(TREELNS) $(TERMLNS)
+
+LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln
+
+LIBS = libmdoc.a
+
+LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \
+ validate.o action.o
+
+TERMOBJS= mdocterm.o mmain.o term.o
+
+TREEOBJS= mdoctree.o mmain.o
+
+LINTOBJS= mdoclint.o mmain.o
+
+OBJS = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS)
+
+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
+
+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)
+
+INSTALL = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \
+ $(STATICS) Makefile.netbsd Makefile.openbsd
+
+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.13 \
+ regress/test.prologue.15 \
+ regress/test.prologue.16 \
+ regress/test.prologue.18 \
+ regress/test.prologue.19 \
+ regress/test.prologue.21 \
+ regress/test.prologue.22 \
+ regress/test.prologue.23 \
+ regress/test.prologue.24 \
+ regress/test.prologue.25 \
+ regress/test.prologue.26 \
+ regress/test.prologue.27 \
+ regress/test.prologue.28 \
+ regress/test.prologue.29 \
+ regress/test.prologue.30 \
+ regress/test.prologue.31 \
+ regress/test.prologue.32 \
+ regress/test.prologue.33 \
+ 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
+
+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.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/test.argv.00
+
+REGRESS = $(FAIL) $(SUCCEED)
+
+all: $(BINS)
+
+lint: $(LLNS)