1 # $Id: Makefile,v 1.439 2014/08/12 21:35:48 schwarze Exp $
3 # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 # Copyright (c) 2011, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
6 # Permission to use, copy, modify, and distribute this software for any
7 # purpose with or without fee is hereby granted, provided that the above
8 # copyright notice and this permission notice appear in all copies.
10 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 # === USER SETTINGS ====================================================
22 # --- user settings relevant for all builds ----------------------------
24 # Specify this if you want to hard-code the operating system to appear
25 # in the lower-left hand corner of -mdoc manuals.
27 # CFLAGS += -DOSNAME="\"OpenBSD 5.5\""
29 # IFF your system supports multi-byte functions (setlocale(), wcwidth(),
30 # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a
31 # UCS-4 value) should you define USE_WCHAR. If you define it and your
32 # system DOESN'T support this, -Tlocale will produce garbage.
33 # If you don't define it, -Tlocale is a synonym for -Tascii.
37 CFLAGS += -g -W -Wall -Wstrict-prototypes
38 CFLAGS += -Wno-unused-parameter -Wwrite-strings
40 BINDIR = $(PREFIX)/bin
41 INCLUDEDIR = $(PREFIX)/include/mandoc
42 LIBDIR = $(PREFIX)/lib/mandoc
43 MANDIR = $(PREFIX)/man
44 EXAMPLEDIR = $(PREFIX)/share/examples/mandoc
47 INSTALL_PROGRAM = $(INSTALL) -m 0555
48 INSTALL_DATA = $(INSTALL) -m 0444
49 INSTALL_LIB = $(INSTALL) -m 0444
50 INSTALL_SOURCE = $(INSTALL) -m 0644
51 INSTALL_MAN = $(INSTALL_DATA)
53 # --- user settings related to database support ------------------------
55 # Building apropos(1) and makewhatis(8) requires SQLite3.
56 # To avoid that dependency, comment the following line.
58 BUILD_TARGETS += db-build
60 # The remaining settings in this section
61 # are only relevant if db-build is enabled.
62 # Otherwise, they have no effect either way.
64 # If your system has manpath(1), uncomment this. This is most any
65 # system that's not OpenBSD or NetBSD. If uncommented, apropos(1)
66 # and makewhatis(8) will use manpath(1) to get the MANPATH variable.
68 #CFLAGS += -DUSE_MANPATH
70 # On some systems, SQLite3 may be installed below /usr/local.
71 # In that case, uncomment the following two lines.
73 #CFLAGS += -I/usr/local/include
74 #DBLIB += -L/usr/local/lib
76 # OpenBSD has the ohash functions in libutil.
77 # Comment the following line if your system doesn't.
81 SBINDIR = $(PREFIX)/sbin
83 # --- user settings related to man.cgi ---------------------------------
85 # To build man.cgi, copy cgi.h.example to cgi.h, edit it,
86 # and enable the following line.
87 # Obviously, this requires that db-build is enabled, too.
89 #BUILD_TARGETS += cgi-build
91 # The remaining settings in this section
92 # are only relevant if cgi-build is enabled.
93 # Otherwise, they have no effect either way.
95 # If your system does not support static binaries, comment this,
96 # for example on Mac OS X.
100 # Linux requires -pthread for statical linking.
105 HTDOCDIR = $(WWWPREFIX)/htdocs
106 CGIBINDIR = $(WWWPREFIX)/cgi-bin
108 # === END OF USER SETTINGS =============================================
110 INSTALL_TARGETS = $(BUILD_TARGETS:-build=-install)
112 BASEBIN = mandoc preconv demandoc
113 DBBIN = apropos makewhatis
118 TESTSRCS = test-dirent-namlen.c \
124 test-reallocarray.c \
125 test-sqlite3_errstr.c \
141 compat_reallocarray.c \
142 compat_sqlite3_errstr.c \
143 compat_strcasestr.c \
194 DISTFILES = INSTALL \
254 LIBMAN_OBJS = man.o \
259 LIBMDOC_OBJS = arch.o \
270 LIBROFF_OBJS = eqn.o \
277 LIBMANDOC_OBJS = $(LIBMAN_OBJS) \
286 COMPAT_OBJS = compat_fgetln.o \
290 compat_reallocarray.o \
291 compat_sqlite3_errstr.o \
292 compat_strcasestr.o \
297 MANDOC_HTML_OBJS = eqn_html.o \
303 MANDOC_MAN_OBJS = mdoc_man.o
305 MANDOC_TERM_OBJS = eqn_term.o \
313 MANDOC_OBJS = $(MANDOC_HTML_OBJS) \
315 $(MANDOC_TERM_OBJS) \
320 MAKEWHATIS_OBJS = mandocdb.o mansearch_const.o manpath.o
322 PRECONV_OBJS = preconv.o
324 APROPOS_OBJS = apropos.o mansearch.o mansearch_const.o manpath.o
326 CGI_OBJS = $(MANDOC_HTML_OBJS) \
332 MANPAGE_OBJS = manpage.o mansearch.o mansearch_const.o manpath.o
334 DEMANDOC_OBJS = demandoc.o
336 WWW_MANS = apropos.1.html \
341 mandoc_escape.3.html \
343 mandoc_malloc.3.html \
345 mchars_alloc.3.html \
363 WWW_OBJS = mdocml.tar.gz \
366 # === DEPENDENCY HANDLING ==============================================
368 all: base-build $(BUILD_TARGETS)
370 base-build: $(BASEBIN)
376 install: base-install $(INSTALL_TARGETS)
378 www: $(WWW_OBJS) $(WWW_MANS)
380 include Makefile.depend
382 # === TARGETS CONTAINING SHELL COMMANDS ================================
385 rm -f libmandoc.a $(LIBMANDOC_OBJS)
386 rm -f apropos $(APROPOS_OBJS)
387 rm -f makewhatis $(MAKEWHATIS_OBJS)
388 rm -f preconv $(PRECONV_OBJS)
389 rm -f man.cgi $(CGI_OBJS)
390 rm -f manpage $(MANPAGE_OBJS)
391 rm -f demandoc $(DEMANDOC_OBJS)
392 rm -f mandoc $(MANDOC_OBJS)
393 rm -f config.h config.log $(COMPAT_OBJS)
394 rm -f $(WWW_MANS) $(WWW_OBJS)
397 base-install: base-build
398 mkdir -p $(DESTDIR)$(BINDIR)
399 mkdir -p $(DESTDIR)$(EXAMPLEDIR)
400 mkdir -p $(DESTDIR)$(LIBDIR)
401 mkdir -p $(DESTDIR)$(INCLUDEDIR)
402 mkdir -p $(DESTDIR)$(MANDIR)/man1
403 mkdir -p $(DESTDIR)$(MANDIR)/man3
404 mkdir -p $(DESTDIR)$(MANDIR)/man7
405 $(INSTALL_PROGRAM) $(BASEBIN) $(DESTDIR)$(BINDIR)
406 $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
407 $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h \
408 $(DESTDIR)$(INCLUDEDIR)
409 $(INSTALL_MAN) mandoc.1 preconv.1 demandoc.1 $(DESTDIR)$(MANDIR)/man1
410 $(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \
411 mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3
412 $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 \
413 $(DESTDIR)$(MANDIR)/man7
414 $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)
417 mkdir -p $(DESTDIR)$(BINDIR)
418 mkdir -p $(DESTDIR)$(SBINDIR)
419 mkdir -p $(DESTDIR)$(MANDIR)/man1
420 mkdir -p $(DESTDIR)$(MANDIR)/man3
421 mkdir -p $(DESTDIR)$(MANDIR)/man5
422 mkdir -p $(DESTDIR)$(MANDIR)/man8
423 $(INSTALL_PROGRAM) apropos $(DESTDIR)$(BINDIR)
424 ln -f $(DESTDIR)$(BINDIR)/apropos $(DESTDIR)$(BINDIR)/whatis
425 $(INSTALL_PROGRAM) makewhatis $(DESTDIR)$(SBINDIR)
426 $(INSTALL_MAN) apropos.1 $(DESTDIR)$(MANDIR)/man1
427 ln -f $(DESTDIR)$(MANDIR)/man1/apropos.1 \
428 $(DESTDIR)$(MANDIR)/man1/whatis.1
429 $(INSTALL_MAN) mansearch.3 $(DESTDIR)$(MANDIR)/man3
430 $(INSTALL_MAN) mandoc.db.5 $(DESTDIR)$(MANDIR)/man5
431 $(INSTALL_MAN) makewhatis.8 $(DESTDIR)$(MANDIR)/man8
433 cgi-install: cgi-build
434 mkdir -p $(DESTDIR)$(CGIBINDIR)
435 mkdir -p $(DESTDIR)$(HTDOCDIR)
436 mkdir -p $(DESTDIR)$(WWWPREFIX)/man/mandoc/man1
437 mkdir -p $(DESTDIR)$(WWWPREFIX)/man/mandoc/man8
438 $(INSTALL_PROGRAM) man.cgi $(DESTDIR)$(CGIBINDIR)
439 $(INSTALL_DATA) example.style.css $(DESTDIR)$(HTDOCDIR)/man.css
440 $(INSTALL_DATA) man-cgi.css $(DESTDIR)$(HTDOCDIR)
441 $(INSTALL_MAN) apropos.1 $(DESTDIR)$(WWWPREFIX)/man/mandoc/man1/
442 $(INSTALL_MAN) man.cgi.8 $(DESTDIR)$(WWWPREFIX)/man/mandoc/man8/
445 mkdir -p $(DESTDIR)$(HTDOCDIR)/snapshots
446 $(INSTALL_DATA) $(WWW_MANS) style.css $(DESTDIR)$(HTDOCDIR)
447 $(INSTALL_DATA) $(WWW_OBJS) $(DESTDIR)$(HTDOCDIR)/snapshots
448 $(INSTALL_DATA) mdocml.tar.gz \
449 $(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).tar.gz
450 $(INSTALL_DATA) mdocml.sha256 \
451 $(DESTDIR)$(HTDOCDIR)/snapshots/mdocml-$(VERSION).sha256
454 mkdep -f Makefile.depend $(CFLAGS) $(SRCS)
455 perl -e 'undef $$/; $$_ = <>; s|/usr/include/\S+||g; \
456 s|\\\n||g; s| +| |g; print;' Makefile.depend > Makefile.tmp
457 mv Makefile.tmp Makefile.depend
459 libmandoc.a: $(COMPAT_OBJS) $(LIBMANDOC_OBJS)
460 $(AR) rs $@ $(COMPAT_OBJS) $(LIBMANDOC_OBJS)
462 mandoc: $(MANDOC_OBJS) libmandoc.a
463 $(CC) $(LDFLAGS) -o $@ $(MANDOC_OBJS) libmandoc.a
465 makewhatis: $(MAKEWHATIS_OBJS) libmandoc.a
466 $(CC) $(LDFLAGS) -o $@ $(MAKEWHATIS_OBJS) libmandoc.a $(DBLIB)
468 preconv: $(PRECONV_OBJS)
469 $(CC) $(LDFLAGS) -o $@ $(PRECONV_OBJS)
471 manpage: $(MANPAGE_OBJS) libmandoc.a
472 $(CC) $(LDFLAGS) -o $@ $(MANPAGE_OBJS) libmandoc.a $(DBLIB)
474 apropos: $(APROPOS_OBJS) libmandoc.a
475 $(CC) $(LDFLAGS) -o $@ $(APROPOS_OBJS) libmandoc.a $(DBLIB)
477 man.cgi: $(CGI_OBJS) libmandoc.a
478 $(CC) $(LDFLAGS) $(STATIC) -o $@ $(CGI_OBJS) libmandoc.a $(DBLIB)
480 demandoc: $(DEMANDOC_OBJS) libmandoc.a
481 $(CC) $(LDFLAGS) -o $@ $(DEMANDOC_OBJS) libmandoc.a
483 mdocml.sha256: mdocml.tar.gz
484 sha256 mdocml.tar.gz > $@
486 mdocml.tar.gz: $(DISTFILES)
487 mkdir -p .dist/mdocml-$(VERSION)/
488 $(INSTALL_SOURCE) $(DISTFILES) .dist/mdocml-$(VERSION)
489 chmod 755 .dist/mdocml-$(VERSION)/configure
490 ( cd .dist/ && tar zcf ../$@ mdocml-$(VERSION) )
493 config.h: configure config.h.pre config.h.post $(TESTSRCS)
495 CC="$(CC)" CFLAGS="$(CFLAGS)" DBLIB="$(DBLIB)" \
496 VERSION="$(VERSION)" ./configure
498 .PHONY: base-install cgi-install db-install install www-install
500 .SUFFIXES: .1 .3 .5 .7 .8 .h
501 .SUFFIXES: .1.html .3.html .5.html .7.html .8.html .h.html
506 .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc
507 ./mandoc -Thtml -Wall,stop \
508 -Ostyle=style.css,man=%N.%S.html,includes=%I.html $< > $@