[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/Makefile, Revision 1.269

1.260     kristaps    1: .SUFFIXES:     .html .xml .sgml .1 .3 .7 .md5 .tar.gz .1.txt .3.txt .7.txt .1.sgml .3.sgml .7.sgml .h .h.html
1.79      kristaps    2:
1.99      kristaps    3: BINDIR         = $(PREFIX)/bin
                      4: INCLUDEDIR     = $(PREFIX)/include
                      5: LIBDIR         = $(PREFIX)/lib
                      6: MANDIR         = $(PREFIX)/man
1.243     kristaps    7: EXAMPLEDIR     = $(PREFIX)/share/examples/mandoc
1.266     kristaps    8: INSTALL                = install
1.263     kristaps    9: INSTALL_PROGRAM        = $(INSTALL) -m 0755
                     10: INSTALL_DATA   = $(INSTALL) -m 0444
                     11: INSTALL_LIB    = $(INSTALL) -m 0644
1.99      kristaps   12: INSTALL_MAN    = $(INSTALL_DATA)
                     13:
1.267     kristaps   14: VERSION           = 1.9.25
                     15: VDATE     = 13 May 2010
1.7       kristaps   16:
1.259     kristaps   17: VFLAGS    = -DVERSION="\"$(VERSION)\""
1.246     kristaps   18: WFLAGS     = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
1.259     kristaps   19: CFLAGS    += -g $(WFLAGS) $(VFLAGS) -DHAVE_CONFIG_H
                     20:
                     21: # Specify this if you want to hard-code the operating system to appear
                     22: # in the lower-left hand corner of -mdoc manuals.
                     23: # CFLAGS += -DOSNAME="\"OpenBSD 4.5\""
                     24:
1.264     kristaps   25: # Unset this if you don't want Xo/Xc allowing split `It' lines, which
                     26: # breaks symmetry.
                     27: CFLAGS   += -DUGLY
1.259     kristaps   28:
1.182     kristaps   29: LINTFLAGS += $(VFLAGS)
1.132     kristaps   30:
1.231     kristaps   31: MANDOCFLAGS = -Wall -fstrict
1.269   ! kristaps   32:
1.234     kristaps   33: MANDOCHTML = -Thtml -Ostyle=style.css,man=%N.%S.html,includes=%I.html
1.222     kristaps   34:
1.269   ! kristaps   35: ROFFLNS    = roff.ln
        !            36:
        !            37: ROFFSRCS   = roff.c
        !            38:
        !            39: ROFFOBJS   = roff.o
        !            40:
1.268     kristaps   41: MANDOCLNS  = mandoc.ln
                     42:
                     43: MANDOCSRCS = mandoc.c
                     44:
                     45: MANDOCOBJS = mandoc.o
                     46:
1.165     kristaps   47: MDOCLNS           = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \
                     48:             mdoc_argv.ln mdoc_validate.ln mdoc_action.ln \
1.268     kristaps   49:             lib.ln att.ln arch.ln vol.ln msec.ln st.ln
                     50:
1.165     kristaps   51: MDOCOBJS   = mdoc_macro.o mdoc.o mdoc_hash.o mdoc_strings.o \
1.163     kristaps   52:             mdoc_argv.o mdoc_validate.o mdoc_action.o lib.o att.o \
1.268     kristaps   53:             arch.o vol.o msec.o st.o
                     54:
1.165     kristaps   55: MDOCSRCS   = mdoc_macro.c mdoc.c mdoc_hash.c mdoc_strings.c \
1.163     kristaps   56:             mdoc_argv.c mdoc_validate.c mdoc_action.c lib.c att.c \
1.268     kristaps   57:             arch.c vol.c msec.c st.c
1.148     kristaps   58:
1.156     kristaps   59: MANLNS    = man_macro.ln man.ln man_hash.ln man_validate.ln \
1.268     kristaps   60:             man_action.ln man_argv.ln
                     61:
1.156     kristaps   62: MANOBJS           = man_macro.o man.o man_hash.o man_validate.o \
1.268     kristaps   63:             man_action.o man_argv.o
1.156     kristaps   64: MANSRCS           = man_macro.c man.c man_hash.c man_validate.c \
1.203     kristaps   65:             man_action.c mandoc.c man_argv.c
1.132     kristaps   66:
1.210     kristaps   67: MAINLNS           = main.ln mdoc_term.ln chars.ln term.ln tree.ln \
1.214     kristaps   68:             compat.ln man_term.ln html.ln mdoc_html.ln \
1.223     kristaps   69:             man_html.ln out.ln
1.268     kristaps   70:
1.210     kristaps   71: MAINOBJS   = main.o mdoc_term.o chars.o term.o tree.o compat.o \
1.223     kristaps   72:             man_term.o html.o mdoc_html.o man_html.o out.o
1.268     kristaps   73:
1.210     kristaps   74: MAINSRCS   = main.c mdoc_term.c chars.c term.c tree.c compat.c \
1.223     kristaps   75:             man_term.c html.c mdoc_html.c man_html.c out.c
1.132     kristaps   76:
1.268     kristaps   77: LLNS      = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln \
1.269   ! kristaps   78:             llib-llibmandoc.ln llib-llibroff.ln
1.268     kristaps   79:
1.269   ! kristaps   80: LNS       = $(MAINLNS) $(MDOCLNS) $(MANLNS) \
        !            81:             $(MANDOCLNS) $(ROFFLNS)
1.268     kristaps   82:
1.269   ! kristaps   83: LIBS      = libmdoc.a libman.a libmandoc.a libroff.a
1.268     kristaps   84:
1.269   ! kristaps   85: OBJS      = $(MDOCOBJS) $(MAINOBJS) $(MANOBJS) \
        !            86:             $(MANDOCOBJS) $(ROFFOBJS)
1.268     kristaps   87:
1.269   ! kristaps   88: SRCS      = $(MDOCSRCS) $(MAINSRCS) $(MANSRCS) \
        !            89:             $(MANDOCSRCS) $(ROFFSRCS)
1.268     kristaps   90:
1.217     kristaps   91: DATAS     = arch.in att.in lib.in msec.in st.in \
                     92:             vol.in chars.in
1.268     kristaps   93:
1.217     kristaps   94: HEADS     = mdoc.h libmdoc.h man.h libman.h term.h \
1.269   ! kristaps   95:             libmandoc.h html.h chars.h out.h main.h roff.h
1.268     kristaps   96:
1.219     kristaps   97: GSGMLS    = mandoc.1.sgml mdoc.3.sgml mdoc.7.sgml manuals.7.sgml \
                     98:             mandoc_char.7.sgml man.7.sgml man.3.sgml
1.268     kristaps   99:
1.240     kristaps  100: SGMLS     = index.sgml
1.268     kristaps  101:
1.260     kristaps  102: HTMLS     = ChangeLog.html index.html man.h.html mdoc.h.html
1.268     kristaps  103:
1.193     kristaps  104: XSLS      = ChangeLog.xsl
1.268     kristaps  105:
1.241     kristaps  106: GHTMLS    = mandoc.1.html mdoc.3.html man.3.html mdoc.7.html \
                    107:             man.7.html mandoc_char.7.html manuals.7.html
1.268     kristaps  108:
1.218     kristaps  109: TEXTS     = mandoc.1.txt mdoc.3.txt man.3.txt mdoc.7.txt man.7.txt \
1.221     kristaps  110:             mandoc_char.7.txt manuals.7.txt ChangeLog.txt
1.268     kristaps  111:
1.216     kristaps  112: EXAMPLES   = example.style.css
1.268     kristaps  113:
1.193     kristaps  114: XMLS      = ChangeLog.xml
1.268     kristaps  115:
1.213     kristaps  116: STATICS           = index.css style.css external.png
1.268     kristaps  117:
1.195     kristaps  118: MD5S      = mdocml-$(VERSION).md5
1.268     kristaps  119:
1.195     kristaps  120: TARGZS    = mdocml-$(VERSION).tar.gz
1.268     kristaps  121:
1.168     kristaps  122: MANS      = mandoc.1 mdoc.3 mdoc.7 manuals.7 mandoc_char.7 \
                    123:             man.7 man.3
1.268     kristaps  124:
1.132     kristaps  125: BINS      = mandoc
1.268     kristaps  126:
1.246     kristaps  127: TESTS     = test-strlcat.c test-strlcpy.c
1.268     kristaps  128:
1.246     kristaps  129: CONFIGS           = config.h.pre config.h.post
1.268     kristaps  130:
1.263     kristaps  131: DOCLEAN           = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
1.241     kristaps  132:             $(TARGZS) tags $(MD5S) $(XMLS) $(TEXTS) $(GSGMLS) \
1.246     kristaps  133:             $(GHTMLS) config.h config.log
1.268     kristaps  134:
1.263     kristaps  135: DOINSTALL  = $(SRCS) $(HEADS) Makefile $(MANS) $(SGMLS) $(STATICS) \
1.246     kristaps  136:             $(DATAS) $(XSLS) $(EXAMPLES) $(TESTS) $(CONFIGS)
1.81      kristaps  137:
1.50      kristaps  138: all:   $(BINS)
1.32      kristaps  139:
1.50      kristaps  140: lint:  $(LLNS)
1.42      kristaps  141:
1.1       kristaps  142: clean:
1.263     kristaps  143:        rm -f $(DOCLEAN)
1.1       kristaps  144:
1.89      kristaps  145: cleanlint:
                    146:        rm -f $(LNS) $(LLNS)
                    147:
1.237     kristaps  148: cleanhtml:
1.241     kristaps  149:        rm -f $(HTMLS) $(GSGMLS) $(GHTMLS)
1.237     kristaps  150:
1.60      kristaps  151: dist:  mdocml-$(VERSION).tar.gz
1.59      kristaps  152:
1.241     kristaps  153: www:   all $(GSGMLS) $(GHTMLS) $(HTMLS) $(TEXTS) $(MD5S) $(TARGZS)
                    154:
                    155: htmls: all $(GSGMLS) $(GHTMLS)
1.79      kristaps  156:
1.80      kristaps  157: installwww: www
1.263     kristaps  158:        $(INSTALL_DATA) $(GHTMLS) $(HTMLS) $(TEXTS) $(STATICS) $(PREFIX)/
                    159:        $(INSTALL_DATA) mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/
                    160:        $(INSTALL_DATA) mdocml-$(VERSION).md5 $(PREFIX)/snapshots/
                    161:        $(INSTALL_DATA) mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz
                    162:        $(INSTALL_DATA) mdocml-$(VERSION).md5 $(PREFIX)/snapshots/mdocml.md5
1.80      kristaps  163:
1.60      kristaps  164: install:
1.101     kristaps  165:        mkdir -p $(BINDIR)
1.245     kristaps  166:        mkdir -p $(EXAMPLEDIR)
1.101     kristaps  167:        mkdir -p $(MANDIR)/man1
1.131     kristaps  168:        mkdir -p $(MANDIR)/man7
1.132     kristaps  169:        $(INSTALL_PROGRAM) mandoc $(BINDIR)
                    170:        $(INSTALL_MAN) mandoc.1 $(MANDIR)/man1
1.261     kristaps  171:        $(INSTALL_MAN) man.7 mdoc.7 mandoc_char.7 $(MANDIR)/man7
1.243     kristaps  172:        $(INSTALL_DATA) example.style.css $(EXAMPLEDIR)
1.60      kristaps  173:
                    174: uninstall:
1.132     kristaps  175:        rm -f $(BINDIR)/mandoc
                    176:        rm -f $(MANDIR)/man1/mandoc.1
1.131     kristaps  177:        rm -f $(MANDIR)/man7/mdoc.7
1.245     kristaps  178:        rm -f $(MANDIR)/man7/man.7
1.261     kristaps  179:        rm -f $(MANDIR)/man7/mandoc_char.7
1.245     kristaps  180:        rm -f $(EXAMPLEDIR)/example.style.css
1.20      kristaps  181:
1.246     kristaps  182: $(OBJS): config.h
                    183:
1.249     kristaps  184: $(LNS): config.h
                    185:
1.251     kristaps  186: man_macro.ln man_macro.o: man_macro.c libman.h
1.108     kristaps  187:
1.251     kristaps  188: lib.ln lib.o: lib.c lib.in libmdoc.h
1.108     kristaps  189:
1.251     kristaps  190: att.ln att.o: att.c att.in libmdoc.h
1.108     kristaps  191:
1.251     kristaps  192: arch.ln arch.o: arch.c arch.in libmdoc.h
1.148     kristaps  193:
1.251     kristaps  194: vol.ln vol.o: vol.c vol.in libmdoc.h
1.108     kristaps  195:
1.251     kristaps  196: chars.ln chars.o: chars.c chars.in chars.h
1.108     kristaps  197:
1.251     kristaps  198: msec.ln msec.o: msec.c msec.in libmdoc.h
1.108     kristaps  199:
1.251     kristaps  200: st.ln st.o: st.c st.in libmdoc.h
1.108     kristaps  201:
1.251     kristaps  202: mdoc_macro.ln mdoc_macro.o: mdoc_macro.c libmdoc.h
1.21      kristaps  203:
1.251     kristaps  204: mdoc_term.ln mdoc_term.o: mdoc_term.c term.h mdoc.h
1.74      kristaps  205:
1.251     kristaps  206: mdoc_strings.ln mdoc_strings.o: mdoc_strings.c libmdoc.h
1.148     kristaps  207:
1.251     kristaps  208: man_hash.ln man_hash.o: man_hash.c libman.h
1.148     kristaps  209:
1.251     kristaps  210: mdoc_hash.ln mdoc_hash.o: mdoc_hash.c libmdoc.h
1.52      kristaps  211:
1.251     kristaps  212: mdoc.ln mdoc.o: mdoc.c libmdoc.h
1.21      kristaps  213:
1.251     kristaps  214: man.ln man.o: man.c libman.h
1.47      kristaps  215:
1.269   ! kristaps  216: main.ln main.o: main.c mdoc.h man.h roff.h
1.132     kristaps  217:
1.251     kristaps  218: compat.ln compat.o: compat.c
1.173     kristaps  219:
1.251     kristaps  220: term.ln term.o: term.c term.h man.h mdoc.h chars.h
1.53      kristaps  221:
1.251     kristaps  222: html.ln html.o: html.c html.h chars.h
1.214     kristaps  223:
1.251     kristaps  224: mdoc_html.ln mdoc_html.o: mdoc_html.c html.h mdoc.h
1.214     kristaps  225:
1.251     kristaps  226: man_html.ln man_html.o: man_html.c html.h man.h out.h
1.223     kristaps  227:
1.251     kristaps  228: out.ln out.o: out.c out.h
1.209     kristaps  229:
1.268     kristaps  230: mandoc.ln mandoc.o: mandoc.c libmandoc.h
                    231:
1.251     kristaps  232: tree.ln tree.o: tree.c man.h mdoc.h
1.207     kristaps  233:
1.251     kristaps  234: mdoc_argv.ln mdoc_argv.o: mdoc_argv.c libmdoc.h
1.53      kristaps  235:
1.251     kristaps  236: man_argv.ln man_argv.o: man_argv.c libman.h
1.203     kristaps  237:
1.251     kristaps  238: man_validate.ln man_validate.o: man_validate.c libman.h
1.155     kristaps  239:
1.251     kristaps  240: mdoc_validate.ln mdoc_validate.o: mdoc_validate.c libmdoc.h
1.54      kristaps  241:
1.251     kristaps  242: mdoc_action.ln mdoc_action.o: mdoc_action.c libmdoc.h
1.56      kristaps  243:
1.148     kristaps  244: libmdoc.h: mdoc.h
1.39      kristaps  245:
1.193     kristaps  246: ChangeLog.xml:
1.196     kristaps  247:        cvs2cl --xml --xml-encoding iso-8859-15 -t --noxmlns -f $@
1.193     kristaps  248:
1.221     kristaps  249: ChangeLog.txt:
                    250:        cvs2cl -t -f $@
                    251:
1.194     kristaps  252: ChangeLog.html: ChangeLog.xml ChangeLog.xsl
1.193     kristaps  253:        xsltproc -o $@ ChangeLog.xsl ChangeLog.xml
1.175     kristaps  254:
1.263     kristaps  255: mdocml-$(VERSION).tar.gz: $(DOINSTALL)
1.60      kristaps  256:        mkdir -p .dist/mdocml/mdocml-$(VERSION)/
1.263     kristaps  257:        cp -f $(DOINSTALL) .dist/mdocml/mdocml-$(VERSION)/
1.60      kristaps  258:        ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ )
                    259:        rm -rf .dist/
                    260:
1.148     kristaps  261: llib-llibmdoc.ln: $(MDOCLNS)
1.181     kristaps  262:        $(LINT) -Clibmdoc $(MDOCLNS)
1.148     kristaps  263:
                    264: llib-llibman.ln: $(MANLNS)
1.181     kristaps  265:        $(LINT) -Clibman $(MANLNS)
1.60      kristaps  266:
1.268     kristaps  267: llib-llibmandoc.ln: $(MANDOCLNS)
                    268:        $(LINT) -Clibmandoc $(MANDOCLNS)
                    269:
1.269   ! kristaps  270: llib-llibroff.ln: $(ROFFLNS)
        !           271:        $(LINT) -Clibroff $(ROFFLNS)
        !           272:
        !           273: llib-lmandoc.ln: $(MAINLNS) llib-llibmdoc.ln llib-llibman.ln llib-llibmandoc.ln llib-llibroff.ln
        !           274:        $(LINT) -Cmandoc $(MAINLNS) llib-llibmdoc.ln llib-llibman.ln llib-llibmandoc.ln llib-llibroff.ln
1.60      kristaps  275:
1.148     kristaps  276: libmdoc.a: $(MDOCOBJS)
                    277:        $(AR) rs $@ $(MDOCOBJS)
                    278:
                    279: libman.a: $(MANOBJS)
                    280:        $(AR) rs $@ $(MANOBJS)
1.60      kristaps  281:
1.268     kristaps  282: libmandoc.a: $(MANDOCOBJS)
                    283:        $(AR) rs $@ $(MANDOCOBJS)
                    284:
1.269   ! kristaps  285: libroff.a: $(ROFFOBJS)
        !           286:        $(AR) rs $@ $(ROFFOBJS)
        !           287:
        !           288: mandoc: $(MAINOBJS) libroff.a libmdoc.a libman.a libmandoc.a
        !           289:        $(CC) $(CFLAGS) -o $@ $(MAINOBJS) libroff.a libmdoc.a libman.a libmandoc.a
1.75      kristaps  290:
1.79      kristaps  291: .sgml.html:
1.238     kristaps  292:        validate --warn $<
1.85      kristaps  293:        sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
1.168     kristaps  294:
1.228     kristaps  295: .1.1.txt .3.3.txt .7.7.txt:
1.222     kristaps  296:        ./mandoc $(MANDOCFLAGS) $< | col -b > $@
1.168     kristaps  297:
1.230     kristaps  298: .1.1.sgml .3.3.sgml .7.7.sgml:
1.222     kristaps  299:        ./mandoc $(MANDOCFLAGS) $(MANDOCHTML) $< > $@
1.212     kristaps  300:
1.185     kristaps  301: .tar.gz.md5:
1.186     kristaps  302:        md5 $< > $@
1.260     kristaps  303:
                    304: .h.h.html:
                    305:        highlight -I $< >$@
1.246     kristaps  306:
                    307: config.h: config.h.pre config.h.post
                    308:        rm -f config.log
                    309:        ( cat config.h.pre; \
                    310:        echo; \
1.247     kristaps  311:        if $(CC) $(CFLAGS) -Werror -c test-strlcat.c >> config.log 2>&1; then \
1.246     kristaps  312:                echo '#define HAVE_STRLCAT'; \
                    313:                rm test-strlcat.o; \
                    314:        fi; \
1.247     kristaps  315:        if $(CC) $(CFLAGS) -Werror -c test-strlcpy.c >> config.log 2>&1; then \
1.246     kristaps  316:                echo '#define HAVE_STRLCPY'; \
                    317:                rm test-strlcpy.o; \
                    318:        fi; \
                    319:        echo; \
                    320:        cat config.h.post \
                    321:        ) > $@

CVSweb