1 .PHONY
: clean install installwww
2 .SUFFIXES
: .sgml .html .md5 .h .h.html
4 .SUFFIXES
: .1.html
.3.html
.7.html
.8.html
6 # Specify this if you want to hard-code the operating system to appear
7 # in the lower-left hand corner of -mdoc manuals.
9 # CFLAGS += -DOSNAME="\"OpenBSD 5.4\""
12 VDATE
= 4 January
2014
14 # IFF your system supports multi-byte functions (setlocale(), wcwidth(),
15 # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a
16 # UCS-4 value) should you define USE_WCHAR. If you define it and your
17 # system DOESN'T support this, -Tlocale will produce garbage.
18 # If you don't define it, -Tlocale is a synonym for -Tacsii.
22 # If your system has manpath(1), uncomment this. This is most any
23 # system that's not OpenBSD or NetBSD. If uncommented, manpage(1) and
24 # mandocdb(8) will use manpath(1) to get the MANPATH variable.
25 #CFLAGS += -DUSE_MANPATH
27 # If your system does not support static binaries, comment this,
28 # for example on Mac OS X.
30 # Linux requires -pthread to statically link with libdb.
33 CFLAGS
+= -I
/usr
/local
/include -g
-DHAVE_CONFIG_H
34 CFLAGS
+= -W
-Wall
-Wstrict-prototypes
-Wno-unused-parameter
-Wwrite-strings
37 HTDOCDIR
= $(WWWPREFIX
)/htdocs
38 CGIBINDIR
= $(WWWPREFIX
)/cgi-bin
39 BINDIR
= $(PREFIX
)/bin
40 INCLUDEDIR
= $(PREFIX
)/include/mandoc
41 LIBDIR
= $(PREFIX
)/lib
/mandoc
42 MANDIR
= $(PREFIX
)/man
43 EXAMPLEDIR
= $(PREFIX
)/share
/examples
/mandoc
45 INSTALL_PROGRAM
= $(INSTALL
) -m
0755
46 INSTALL_DATA
= $(INSTALL
) -m
0444
47 INSTALL_LIB
= $(INSTALL
) -m
0644
48 INSTALL_SOURCE
= $(INSTALL
) -m
0644
49 INSTALL_MAN
= $(INSTALL_DATA
)
51 DBLIB
= -L
/usr
/local
/lib
-lsqlite3
52 DBBIN
= mandocdb manpage apropos
54 all: mandoc preconv demandoc
$(DBBIN
)
56 TESTSRCS
= test-fgetln.c \
171 LIBMAN_OBJS
= man.o \
176 LIBMDOC_OBJS
= arch.o \
187 LIBROFF_OBJS
= eqn.o \
194 LIBMANDOC_OBJS
= $(LIBMAN_OBJS
) \
202 COMPAT_OBJS
= compat_fgetln.o \
205 compat_strcasestr.o \
220 $(LIBMAN_OBJS
): libman.h
221 $(LIBMDOC_OBJS
): libmdoc.h
222 $(LIBROFF_OBJS
): libroff.h
223 $(LIBMANDOC_OBJS
): mandoc.h mdoc.h man.h libmandoc.h config.h
224 $(COMPAT_OBJS
): config.h compat_ohash.h
226 MANDOC_HTML_OBJS
= eqn_html.o \
231 $(MANDOC_HTML_OBJS
): html.h
233 MANDOC_MAN_OBJS
= mdoc_man.o
235 MANDOC_TERM_OBJS
= eqn_term.o \
242 $(MANDOC_TERM_OBJS
): term.h
244 MANDOC_OBJS
= $(MANDOC_HTML_OBJS
) \
246 $(MANDOC_TERM_OBJS
) \
250 $(MANDOC_OBJS
): main.h mandoc.h mdoc.h man.h config.h out.h
252 MANDOCDB_OBJS
= mandocdb.o manpath.o
253 $(MANDOCDB_OBJS
): mansearch.h mandoc.h mdoc.h man.h config.h manpath.h
255 PRECONV_OBJS
= preconv.o
256 $(PRECONV_OBJS
): config.h
258 APROPOS_OBJS
= apropos.o mansearch.o manpath.o
259 $(APROPOS_OBJS
): config.h manpath.h mansearch.h
261 MANPAGE_OBJS
= manpage.o mansearch.o manpath.o
262 $(MANPAGE_OBJS
): config.h manpath.h mansearch.h
264 DEMANDOC_OBJS
= demandoc.o
265 $(DEMANDOC_OBJS
): config.h
267 INDEX_MANS
= apropos
.1.html \
281 $(INDEX_MANS
): mandoc
283 INDEX_OBJS
= $(INDEX_MANS
) \
293 rm -f libmandoc.a
$(LIBMANDOC_OBJS
)
294 rm -f apropos
$(APROPOS_OBJS
)
295 rm -f mandocdb
$(MANDOCDB_OBJS
)
296 rm -f preconv
$(PRECONV_OBJS
)
297 rm -f manpage
$(MANPAGE_OBJS
)
298 rm -f demandoc
$(DEMANDOC_OBJS
)
299 rm -f mandoc
$(MANDOC_OBJS
)
300 rm -f config.h config.log
$(COMPAT_OBJS
)
302 rm -f index.html
$(INDEX_OBJS
)
306 mkdir
-p
$(DESTDIR
)$(BINDIR
)
307 mkdir
-p
$(DESTDIR
)$(EXAMPLEDIR
)
308 mkdir
-p
$(DESTDIR
)$(LIBDIR
)
309 mkdir
-p
$(DESTDIR
)$(INCLUDEDIR
)
310 mkdir
-p
$(DESTDIR
)$(MANDIR
)/man1
311 mkdir
-p
$(DESTDIR
)$(MANDIR
)/man3
312 mkdir
-p
$(DESTDIR
)$(MANDIR
)/man7
313 $(INSTALL_PROGRAM
) mandoc preconv demandoc
$(DESTDIR
)$(BINDIR
)
314 $(INSTALL_LIB
) libmandoc.a
$(DESTDIR
)$(LIBDIR
)
315 $(INSTALL_LIB
) man.h mdoc.h mandoc.h
$(DESTDIR
)$(INCLUDEDIR
)
316 $(INSTALL_MAN
) mandoc
.1 preconv
.1 demandoc
.1 $(DESTDIR
)$(MANDIR
)/man1
317 $(INSTALL_MAN
) mandoc
.3 tbl
.3 $(DESTDIR
)$(MANDIR
)/man3
318 $(INSTALL_MAN
) man
.7 mdoc
.7 roff
.7 eqn
.7 tbl
.7 mandoc_char
.7 $(DESTDIR
)$(MANDIR
)/man7
319 $(INSTALL_DATA
) example.style.css
$(DESTDIR
)$(EXAMPLEDIR
)
322 mkdir
-p
$(DESTDIR
)$(CGIBINDIR
)
323 mkdir
-p
$(DESTDIR
)$(HTDOCDIR
)
324 #$(INSTALL_PROGRAM) man.cgi $(DESTDIR)$(CGIBINDIR)
325 $(INSTALL_DATA
) example.style.css
$(DESTDIR
)$(HTDOCDIR
)/man.css
326 $(INSTALL_DATA
) man-cgi.css
$(DESTDIR
)$(HTDOCDIR
)
329 mkdir
-p
$(PREFIX
)/snapshots
330 mkdir
-p
$(PREFIX
)/binaries
331 $(INSTALL_DATA
) index.html external.png index.css
$(PREFIX
)
332 $(INSTALL_DATA
) $(INDEX_MANS
) style.css
$(PREFIX
)
333 $(INSTALL_DATA
) mandoc.h.html man.h.html mdoc.h.html
$(PREFIX
)
334 $(INSTALL_DATA
) mdocml.
tar.gz
$(PREFIX
)/snapshots
335 $(INSTALL_DATA
) mdocml.md5
$(PREFIX
)/snapshots
336 $(INSTALL_DATA
) mdocml.
tar.gz
$(PREFIX
)/snapshots
/mdocml-
$(VERSION
).
tar.gz
337 $(INSTALL_DATA
) mdocml.md5
$(PREFIX
)/snapshots
/mdocml-
$(VERSION
).md5
339 libmandoc.a
: $(COMPAT_OBJS
) $(LIBMANDOC_OBJS
)
340 $(AR
) rs
$@
$(COMPAT_OBJS
) $(LIBMANDOC_OBJS
)
342 mandoc
: $(MANDOC_OBJS
) libmandoc.a
343 $(CC
) $(LDFLAGS
) -o
$@
$(MANDOC_OBJS
) libmandoc.a
345 mandocdb
: $(MANDOCDB_OBJS
) libmandoc.a
346 $(CC
) $(LDFLAGS
) -o
$@
$(MANDOCDB_OBJS
) libmandoc.a
$(DBLIB
)
348 preconv
: $(PRECONV_OBJS
)
349 $(CC
) $(LDFLAGS
) -o
$@
$(PRECONV_OBJS
)
351 manpage
: $(MANPAGE_OBJS
) libmandoc.a
352 $(CC
) $(LDFLAGS
) -o
$@
$(MANPAGE_OBJS
) libmandoc.a
$(DBLIB
)
354 apropos
: $(APROPOS_OBJS
) libmandoc.a
355 $(CC
) $(LDFLAGS
) -o
$@
$(APROPOS_OBJS
) libmandoc.a
$(DBLIB
)
357 demandoc
: $(DEMANDOC_OBJS
) libmandoc.a
358 $(CC
) $(LDFLAGS
) -o
$@
$(DEMANDOC_OBJS
) libmandoc.a
360 mdocml.md5
: mdocml.
tar.gz
361 md5 mdocml.
tar.gz
>$@
363 mdocml.
tar.gz
: $(SRCS
)
364 mkdir
-p .
dist/mdocml-
$(VERSION
)/
365 $(INSTALL_SOURCE
) $(SRCS
) .
dist/mdocml-
$(VERSION
)
366 chmod
755 .
dist/mdocml-
$(VERSION
)/configure
367 ( cd .
dist/ && tar zcf ..
/$@ mdocml-
$(VERSION
) )
370 index.html
: $(INDEX_OBJS
)
372 config.h
: configure config.h.pre config.h.post
$(TESTSRCS
)
374 CC
="$(CC)" CFLAGS
="$(CFLAGS)" VERSION
="$(VERSION)" .
/configure
379 .1.1.html
.3.3.html
.7.7.html
.8.8.html
:
380 .
/mandoc
-Thtml
-Wall
,stop
-Ostyle
=style.css
,man
=%N.
%S.html
,includes
=%I.html
$< >$@
384 sed
-e
"s!@VERSION@!$(VERSION)!" -e
"s!@VDATE@!$(VDATE)!" $< >$@