version 1.1, 2008/11/22 14:53:29 |
version 1.76, 2009/02/22 22:58:39 |
|
|
CFLAGS += -W -Wall -g |
VERSION = 1.3.0 |
|
|
LINTFLAGS += -c -e -f -u |
CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g |
|
|
CLEAN = mdocml mdocml.o mdocml.ln libmdocml.o libmdocml.ln |
LIBLNS = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \ |
|
validate.ln action.ln |
|
|
INSTALL = Makefile libmdocml.h mdocml.c libmdocml.c mdocml.1 |
TREELNS = mdoctree.ln mmain.ln tree.ln |
|
|
all: mdocml |
TERMLNS = mdoctree.ln mmain.ln term.ln termact.ln |
|
|
lint: mdocml.ln libmdocml.ln |
LNS = $(LIBLNS) $(TREELNS) $(TERMLNS) |
|
|
mdocml: mdocml.o libmdocml.o |
LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocterm.ln |
$(CC) $(CFLAGS) -o $@ mdocml.o libmdocml.o |
|
|
|
|
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 termact.o |
|
|
|
TREEOBJS= mdoctree.o mmain.o tree.o |
|
|
|
OBJS = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) |
|
|
|
SRCS = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \ |
|
action.c term.c tree.c termact.c mdoctree.c mdocterm.c \ |
|
mmain.c |
|
|
|
HEADS = mdoc.h private.h term.h mmain.h |
|
|
|
MANS = mdoctree.1 mdocterm.1 mdoc.3 |
|
|
|
BINS = mdocterm mdoctree |
|
|
|
CLEAN = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) |
|
|
|
INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR $(MANS) |
|
|
|
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.01 \ |
|
regress/test.sh.02 \ |
|
regress/test.sh.03 \ |
|
regress/test.name.01 \ |
|
regress/test.name.02 \ |
|
regress/test.name.03 |
|
|
|
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.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 |
|
|
|
all: $(BINS) |
|
|
|
lint: $(LLNS) |
|
|
clean: |
clean: |
rm -f $(CLEAN) |
rm -f $(CLEAN) |
|
|
dist: |
dist: mdocml-$(VERSION).tar.gz |
mkdir -p .dist/mdocml/ |
|
install -m 0644 $(INSTALL) .dist/mdocml/ |
port: mdocml-oport-$(VERSION).tar.gz |
( cd .dist/ && tar zcf ../mdocml.tgz mdocml/ ) |
|
|
regress:: mdocml |
|
@for f in $(FAIL); do \ |
|
echo "./mdocml $$f" ; \ |
|
./mdocml $$f 2>/dev/null || continue ; exit 1 ; done |
|
@for f in $(SUCCEED); do \ |
|
echo "./mdocml $$f" ; \ |
|
./mdocml $$f 2>/dev/null || exit 1 ; done |
|
|
|
install: |
|
mkdir -p $(PREFIX)/bin/ |
|
mkdir -p $(PREFIX)/include/mdoc/ |
|
mkdir -p $(PREFIX)/lib/ |
|
mkdir -p $(PREFIX)/man/man1/ |
|
install -m 0755 mdocterm $(PREFIX)/bin/ |
|
install -m 0755 mdoctree $(PREFIX)/bin/ |
|
install -m 0444 mdocterm.1 $(PREFIX)/man/man1/ |
|
install -m 0444 mdocterm.1 $(PREFIX)/man/man1/ |
|
install -m 0444 mdoc.3 $(PREFIX)/man/man3/ |
|
install -m 0644 libmdoc.a $(PREFIX)/lib/ |
|
install -m 0444 mdoc.h $(PREFIX)/include/ |
|
|
|
install-dist: mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz |
|
install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/ |
|
install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/mdocml.tar.gz |
|
install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/ |
|
install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/mdocml-oport.tar.gz |
|
|
|
uninstall: |
|
rm -f $(PREFIX)/bin/mdocterm |
|
rm -f $(PREFIX)/bin/mdoctree |
|
rm -f $(PREFIX)/man/man1/mdocterm.1 |
|
rm -f $(PREFIX)/man/man1/mdoctree.1 |
|
rm -f $(PREFIX)/man/man3/mdoc.3 |
|
rm -f $(PREFIX)/lib/libmdoc.a |
|
rm -f $(PREFIX)/include/mdoc.h |
|
|
|
macro.ln: macro.c private.h |
|
macro.o: macro.c private.h |
|
|
|
tree.ln: tree.c mdoc.h |
|
tree.o: tree.c mdoc.h |
|
|
|
term.ln: term.c term.h |
|
term.o: term.c term.h |
|
|
|
termact.ln: termact.c term.h |
|
termact.o: termact.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 |
|
|
|
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-oport-$(VERSION).tar.gz: Makefile.port DESCR |
|
mkdir -p .dist/mdocml/pkg |
|
sed -e "s!@VERSION@!$(VERSION)!" Makefile.port > .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 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/man3/mdoc.3 >> .dist/mdocml/pkg/PLIST |
|
( cd .dist/ && tar zcf ../$@ mdocml/ ) |
rm -rf .dist/ |
rm -rf .dist/ |
|
|
mdocml.ln: mdocml.c |
mdocml-$(VERSION).tar.gz: $(INSTALL) |
|
mkdir -p .dist/mdocml/mdocml-$(VERSION)/ |
|
install -m 0644 $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/ |
|
( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ ) |
|
rm -rf .dist/ |
|
|
mdocml.o: mdocml.c |
llib-llibmdoc.ln: $(LIBLNS) |
|
$(LINT) $(LINTFLAGS) -Clibmdoc $(LIBLNS) |
|
|
mdocml.c: libmdocml.h |
llib-lmdoctree.ln: $(TREELNS) llib-llibmdoc.ln |
|
$(LINT) $(LINTFLAGS) -Cmdoctree $(TREELNS) llib-llibmdoc.ln |
|
|
libmdocml.ln: libmdocml.c |
llib-lmdocterm.ln: $(TERMLNS) llib-llibmdoc.ln |
|
$(LINT) $(LINTFLAGS) -Cmdocterm $(TERMLNS) llib-llibmdoc.ln |
|
|
libmdocml.o: libmdocml.c |
libmdoc.a: $(LIBOBJS) |
|
$(AR) rs $@ $(LIBOBJS) |
|
|
libmdocml.c: libmdocml.h |
mdocterm: $(TERMOBJS) libmdoc.a |
|
$(CC) $(CFLAGS) -o $@ $(TERMOBJS) libmdoc.a |
|
|
|
mdoctree: $(TREEOBJS) libmdoc.a |
|
$(CC) $(CFLAGS) -o $@ $(TREEOBJS) libmdoc.a |
|
|