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

Annotation of mandoc/Makefile, Revision 1.213

1.213   ! kristaps    1: .SUFFIXES:     .html .xml .sgml .1 .3 .7 .md5 .tar.gz .1.html .3.html .7.html
1.79      kristaps    2:
1.99      kristaps    3: BINDIR         = $(PREFIX)/bin
                      4: INCLUDEDIR     = $(PREFIX)/include
                      5: LIBDIR         = $(PREFIX)/lib
                      6: MANDIR         = $(PREFIX)/man
                      7: INSTALL_PROGRAM        = install -m 0755
                      8: INSTALL_DATA   = install -m 0444
                      9: INSTALL_LIB    = install -m 0644
                     10: INSTALL_MAN    = $(INSTALL_DATA)
                     11:
1.206     kristaps   12: VERSION           = 1.9.2
                     13: VDATE     = 05 September 2009
1.7       kristaps   14:
1.131     kristaps   15: VFLAGS     = -DVERSION=\"$(VERSION)\"
1.143     kristaps   16: CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
1.113     kristaps   17: CFLAGS    += $(VFLAGS)
1.182     kristaps   18: LINTFLAGS += $(VFLAGS)
1.132     kristaps   19:
1.165     kristaps   20: MDOCLNS           = mdoc_macro.ln mdoc.ln mdoc_hash.ln mdoc_strings.ln \
                     21:             mdoc_argv.ln mdoc_validate.ln mdoc_action.ln \
1.187     kristaps   22:             lib.ln att.ln arch.ln vol.ln msec.ln st.ln \
                     23:             mandoc.ln
1.165     kristaps   24: MDOCOBJS   = mdoc_macro.o mdoc.o mdoc_hash.o mdoc_strings.o \
1.163     kristaps   25:             mdoc_argv.o mdoc_validate.o mdoc_action.o lib.o att.o \
1.187     kristaps   26:             arch.o vol.o msec.o st.o mandoc.o
1.165     kristaps   27: MDOCSRCS   = mdoc_macro.c mdoc.c mdoc_hash.c mdoc_strings.c \
1.163     kristaps   28:             mdoc_argv.c mdoc_validate.c mdoc_action.c lib.c att.c \
1.187     kristaps   29:             arch.c vol.c msec.c st.c mandoc.c
1.148     kristaps   30:
1.156     kristaps   31: MANLNS    = man_macro.ln man.ln man_hash.ln man_validate.ln \
1.203     kristaps   32:             man_action.ln mandoc.ln man_argv.ln
1.156     kristaps   33: MANOBJS           = man_macro.o man.o man_hash.o man_validate.o \
1.203     kristaps   34:             man_action.o mandoc.o man_argv.o
1.156     kristaps   35: MANSRCS           = man_macro.c man.c man_hash.c man_validate.c \
1.203     kristaps   36:             man_action.c mandoc.c man_argv.c
1.132     kristaps   37:
1.210     kristaps   38: MAINLNS           = main.ln mdoc_term.ln chars.ln term.ln tree.ln \
1.212     kristaps   39:             compat.ln man_term.ln html.ln
1.210     kristaps   40: MAINOBJS   = main.o mdoc_term.o chars.o term.o tree.o compat.o \
1.212     kristaps   41:             man_term.o html.o
1.210     kristaps   42: MAINSRCS   = main.c mdoc_term.c chars.c term.c tree.c compat.c \
1.212     kristaps   43:             man_term.c html.c
1.132     kristaps   44:
1.148     kristaps   45: LLNS      = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln
1.157     kristaps   46: LNS       = $(MAINLNS) $(MDOCLNS) $(MANLNS)
1.148     kristaps   47: LIBS      = libmdoc.a libman.a
1.158     kristaps   48: OBJS      = $(MDOCOBJS) $(MAINOBJS) $(MANOBJS)
1.150     kristaps   49: SRCS      = $(MDOCSRCS) $(MAINSRCS) $(MANSRCS)
1.210     kristaps   50: DATAS     = arch.in att.in lib.in msec.in st.in vol.in chars.in
1.187     kristaps   51: HEADS     = mdoc.h libmdoc.h man.h libman.h term.h libmandoc.h
1.142     kristaps   52: SGMLS     = index.sgml
1.193     kristaps   53: XSLS      = ChangeLog.xsl
1.212     kristaps   54: HTMLS     = index.html ChangeLog.html mandoc.1.html mdoc.3.html \
                     55:             man.3.html mdoc.7.html man.7.html mandoc_char.7.html \
                     56:             manuals.7.html
1.193     kristaps   57: XMLS      = ChangeLog.xml
1.213   ! kristaps   58: STATICS           = index.css style.css external.png
1.195     kristaps   59: MD5S      = mdocml-$(VERSION).md5
                     60: TARGZS    = mdocml-$(VERSION).tar.gz
1.168     kristaps   61: MANS      = mandoc.1 mdoc.3 mdoc.7 manuals.7 mandoc_char.7 \
                     62:             man.7 man.3
1.132     kristaps   63: BINS      = mandoc
1.168     kristaps   64: CLEAN     = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
1.213   ! kristaps   65:             $(TARGZS) tags $(MD5S) $(XMLS)
1.198     kristaps   66: INSTALL           = $(SRCS) $(HEADS) Makefile $(MANS) $(SGMLS) $(STATICS) \
                     67:             $(DATAS) $(XSLS)
1.81      kristaps   68:
1.50      kristaps   69: all:   $(BINS)
1.32      kristaps   70:
1.50      kristaps   71: lint:  $(LLNS)
1.42      kristaps   72:
1.1       kristaps   73: clean:
                     74:        rm -f $(CLEAN)
                     75:
1.89      kristaps   76: cleanlint:
                     77:        rm -f $(LNS) $(LLNS)
                     78:
1.60      kristaps   79: dist:  mdocml-$(VERSION).tar.gz
1.59      kristaps   80:
1.213   ! kristaps   81: www:   all $(HTMLS) $(MD5S) $(TARGZS)
1.79      kristaps   82:
1.80      kristaps   83: installwww: www
1.213   ! kristaps   84:        install -m 0444 $(HTMLS) $(STATICS) $(PREFIX)/
1.81      kristaps   85:        install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/
1.186     kristaps   86:        install -m 0444 mdocml-$(VERSION).md5 $(PREFIX)/snapshots/
1.91      kristaps   87:        install -m 0444 mdocml-$(VERSION).tar.gz $(PREFIX)/snapshots/mdocml.tar.gz
1.186     kristaps   88:        install -m 0444 mdocml-$(VERSION).md5 $(PREFIX)/snapshots/mdocml.md5
1.80      kristaps   89:
1.60      kristaps   90: install:
1.101     kristaps   91:        mkdir -p $(BINDIR)
                     92:        mkdir -p $(MANDIR)/man1
1.131     kristaps   93:        mkdir -p $(MANDIR)/man7
1.132     kristaps   94:        $(INSTALL_PROGRAM) mandoc $(BINDIR)
                     95:        $(INSTALL_MAN) mandoc.1 $(MANDIR)/man1
1.131     kristaps   96:        $(INSTALL_MAN) mdoc.7 $(MANDIR)/man7
1.60      kristaps   97:
                     98: uninstall:
1.132     kristaps   99:        rm -f $(BINDIR)/mandoc
                    100:        rm -f $(MANDIR)/man1/mandoc.1
1.131     kristaps  101:        rm -f $(MANDIR)/man7/mdoc.7
1.20      kristaps  102:
1.148     kristaps  103: man_macro.ln: man_macro.c libman.h
                    104: man_macro.o: man_macro.c libman.h
1.108     kristaps  105:
1.148     kristaps  106: lib.ln: lib.c lib.in libmdoc.h
                    107: lib.o: lib.c lib.in libmdoc.h
1.108     kristaps  108:
1.148     kristaps  109: att.ln: att.c att.in libmdoc.h
                    110: att.o: att.c att.in libmdoc.h
1.108     kristaps  111:
1.148     kristaps  112: arch.ln: arch.c arch.in libmdoc.h
                    113: arch.o: arch.c arch.in libmdoc.h
                    114:
                    115: vol.ln: vol.c vol.in libmdoc.h
                    116: vol.o: vol.c vol.in libmdoc.h
1.108     kristaps  117:
1.210     kristaps  118: chars.ln: chars.c chars.in chars.h
                    119: chars.o: chars.c chars.in chars.h
1.108     kristaps  120:
1.148     kristaps  121: msec.ln: msec.c msec.in libmdoc.h
                    122: msec.o: msec.c msec.in libmdoc.h
1.108     kristaps  123:
1.148     kristaps  124: st.ln: st.c st.in libmdoc.h
                    125: st.o: st.c st.in libmdoc.h
1.108     kristaps  126:
1.148     kristaps  127: mdoc_macro.ln: mdoc_macro.c libmdoc.h
                    128: mdoc_macro.o: mdoc_macro.c libmdoc.h
1.21      kristaps  129:
1.160     kristaps  130: mdoc_term.ln: mdoc_term.c term.h mdoc.h
                    131: mdoc_term.o: mdoc_term.c term.h mdoc.h
1.74      kristaps  132:
1.165     kristaps  133: mdoc_strings.ln: mdoc_strings.c libmdoc.h
                    134: mdoc_strings.o: mdoc_strings.c libmdoc.h
1.148     kristaps  135:
                    136: man_hash.ln: man_hash.c libman.h
                    137: man_hash.o: man_hash.c libman.h
                    138:
                    139: mdoc_hash.ln: mdoc_hash.c libmdoc.h
                    140: mdoc_hash.o: mdoc_hash.c libmdoc.h
1.52      kristaps  141:
1.148     kristaps  142: mdoc.ln: mdoc.c libmdoc.h
                    143: mdoc.o: mdoc.c libmdoc.h
1.21      kristaps  144:
1.148     kristaps  145: man.ln: man.c libman.h
                    146: man.o: man.c libman.h
1.47      kristaps  147:
1.132     kristaps  148: main.ln: main.c mdoc.h
                    149: main.o: main.c mdoc.h
                    150:
1.173     kristaps  151: compat.ln: compat.c
                    152: compat.o: compat.c
                    153:
1.165     kristaps  154: term.ln: term.c term.h man.h mdoc.h
                    155: term.o: term.c term.h man.h mdoc.h
1.53      kristaps  156:
1.212     kristaps  157: html.ln: html.c man.h mdoc.h
                    158: html.o: html.c man.h mdoc.h
1.209     kristaps  159:
1.207     kristaps  160: tree.ln: tree.c man.h mdoc.h
                    161: tree.o: tree.c man.h mdoc.h
                    162:
1.163     kristaps  163: mdoc_argv.ln: mdoc_argv.c libmdoc.h
                    164: mdoc_argv.o: mdoc_argv.c libmdoc.h
1.53      kristaps  165:
1.203     kristaps  166: man_argv.ln: man_argv.c libman.h
                    167: man_argv.o: man_argv.c libman.h
                    168:
1.155     kristaps  169: man_validate.ln: man_validate.c libman.h
                    170: man_validate.o: man_validate.c libman.h
                    171:
                    172: mdoc_validate.ln: mdoc_validate.c libmdoc.h
                    173: mdoc_validate.o: mdoc_validate.c libmdoc.h
1.54      kristaps  174:
1.156     kristaps  175: mdoc_action.ln: mdoc_action.c libmdoc.h
                    176: mdoc_action.o: mdoc_action.c libmdoc.h
1.56      kristaps  177:
1.148     kristaps  178: libmdoc.h: mdoc.h
1.39      kristaps  179:
1.193     kristaps  180: ChangeLog.xml:
1.196     kristaps  181:        cvs2cl --xml --xml-encoding iso-8859-15 -t --noxmlns -f $@
1.193     kristaps  182:
1.194     kristaps  183: ChangeLog.html: ChangeLog.xml ChangeLog.xsl
1.193     kristaps  184:        xsltproc -o $@ ChangeLog.xsl ChangeLog.xml
1.175     kristaps  185:
1.60      kristaps  186: mdocml-$(VERSION).tar.gz: $(INSTALL)
                    187:        mkdir -p .dist/mdocml/mdocml-$(VERSION)/
1.208     kristaps  188:        cp -f $(INSTALL) .dist/mdocml/mdocml-$(VERSION)/
1.60      kristaps  189:        ( cd .dist/mdocml/ && tar zcf ../../$@ mdocml-$(VERSION)/ )
                    190:        rm -rf .dist/
                    191:
1.148     kristaps  192: llib-llibmdoc.ln: $(MDOCLNS)
1.181     kristaps  193:        $(LINT) -Clibmdoc $(MDOCLNS)
1.148     kristaps  194:
                    195: llib-llibman.ln: $(MANLNS)
1.181     kristaps  196:        $(LINT) -Clibman $(MANLNS)
1.60      kristaps  197:
1.132     kristaps  198: llib-lmandoc.ln: $(MAINLNS) llib-llibmdoc.ln
1.181     kristaps  199:        $(LINT) -Cmandoc $(MAINLNS) llib-llibmdoc.ln
1.60      kristaps  200:
1.148     kristaps  201: libmdoc.a: $(MDOCOBJS)
                    202:        $(AR) rs $@ $(MDOCOBJS)
                    203:
                    204: libman.a: $(MANOBJS)
                    205:        $(AR) rs $@ $(MANOBJS)
1.60      kristaps  206:
1.148     kristaps  207: mandoc: $(MAINOBJS) libmdoc.a libman.a
                    208:        $(CC) $(CFLAGS) -o $@ $(MAINOBJS) libmdoc.a libman.a
1.75      kristaps  209:
1.79      kristaps  210: .sgml.html:
                    211:        validate $<
1.85      kristaps  212:        sed -e "s!@VERSION@!$(VERSION)!" -e "s!@VDATE@!$(VDATE)!" $< > $@
1.168     kristaps  213:
                    214: .1.1.txt:
1.183     kristaps  215:        ./mandoc -Wall,error -fstrict $< | col -b > $@
1.168     kristaps  216:
1.212     kristaps  217: .1.1.html:
                    218:        ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
                    219:
1.168     kristaps  220: .3.3.txt:
1.183     kristaps  221:        ./mandoc -Wall,error -fstrict $< | col -b > $@
1.168     kristaps  222:
1.212     kristaps  223: .3.3.html:
                    224:        ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
                    225:
1.168     kristaps  226: .7.7.txt:
1.183     kristaps  227:        ./mandoc -Wall,error -fstrict $< | col -b > $@
1.185     kristaps  228:
1.212     kristaps  229: .7.7.html:
                    230:        ./mandoc -Thtml -ostyle=style.css -Wall,error -fstrict $< > $@
                    231:
1.185     kristaps  232: .tar.gz.md5:
1.186     kristaps  233:        md5 $< > $@

CVSweb