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

Annotation of mandoc/Makefile, Revision 1.279

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

CVSweb