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