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

Diff for /mandoc/Makefile between version 1.526 and 1.530

version 1.526, 2018/12/13 11:55:46 version 1.530, 2019/03/06 16:08:41
Line 1 
Line 1 
 # $Id$  # $Id$
 #  #
 # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>  # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
 # Copyright (c) 2011, 2013-2018 Ingo Schwarze <schwarze@openbsd.org>  # Copyright (c) 2011, 2013-2019 Ingo Schwarze <schwarze@openbsd.org>
 #  #
 # Permission to use, copy, modify, and distribute this software for any  # Permission to use, copy, modify, and distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above  # purpose with or without fee is hereby granted, provided that the above
Line 15 
Line 15 
 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF  # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.  # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   
 VERSION = 1.14.4  VERSION = 1.14.5
   
 # === LIST OF FILES ====================================================  # === LIST OF FILES ====================================================
   
Line 37  TESTSRCS  = test-be32toh.c \
Line 37  TESTSRCS  = test-be32toh.c \
                    test-PATH_MAX.c \                     test-PATH_MAX.c \
                    test-pledge.c \                     test-pledge.c \
                    test-progname.c \                     test-progname.c \
                    test-recvmsg.c \  
                    test-reallocarray.c \                     test-reallocarray.c \
                    test-recallocarray.c \                     test-recallocarray.c \
                      test-recvmsg.c \
                    test-rewb-bsd.c \                     test-rewb-bsd.c \
                    test-rewb-sysv.c \                     test-rewb-sysv.c \
                    test-sandbox_init.c \                     test-sandbox_init.c \
Line 54  TESTSRCS  = test-be32toh.c \
Line 54  TESTSRCS  = test-be32toh.c \
                    test-vasprintf.c \                     test-vasprintf.c \
                    test-wchar.c                     test-wchar.c
   
 SRCS             = att.c \  SRCS             = arch.c \
                      att.c \
                    catman.c \                     catman.c \
                    cgi.c \                     cgi.c \
                    chars.c \                     chars.c \
Line 96  SRCS   = att.c \
Line 97  SRCS   = att.c \
                    man_validate.c \                     man_validate.c \
                    mandoc.c \                     mandoc.c \
                    mandoc_aux.c \                     mandoc_aux.c \
                      mandoc_msg.c \
                    mandoc_ohash.c \                     mandoc_ohash.c \
                    mandoc_xr.c \                     mandoc_xr.c \
                    mandocd.c \                     mandocd.c \
Line 234  LIBROFF_OBJS  = eqn.o \
Line 236  LIBROFF_OBJS  = eqn.o \
 LIBMANDOC_OBJS   = $(LIBMAN_OBJS) \  LIBMANDOC_OBJS   = $(LIBMAN_OBJS) \
                    $(LIBMDOC_OBJS) \                     $(LIBMDOC_OBJS) \
                    $(LIBROFF_OBJS) \                     $(LIBROFF_OBJS) \
                      arch.o \
                    chars.o \                     chars.o \
                    mandoc.o \                     mandoc.o \
                    mandoc_aux.o \                     mandoc_aux.o \
                      mandoc_msg.o \
                    mandoc_ohash.o \                     mandoc_ohash.o \
                    mandoc_xr.o \                     mandoc_xr.o \
                    msec.o \                     msec.o \
Line 350  WWW_MANS  = apropos.1.html \
Line 354  WWW_MANS  = apropos.1.html \
                    mandocd.8.html                     mandocd.8.html
   
 WWW_INCS         = eqn.h.html \  WWW_INCS         = eqn.h.html \
                      html.h.html \
                    man.h.html \                     man.h.html \
                    manconf.h.html \                     manconf.h.html \
                    mandoc.h.html \                     mandoc.h.html \
Line 358  WWW_INCS  = eqn.h.html \
Line 363  WWW_INCS  = eqn.h.html \
                    mansearch.h.html \                     mansearch.h.html \
                    mdoc.h.html \                     mdoc.h.html \
                    roff.h.html \                     roff.h.html \
                    tbl.h.html                     tbl.h.html \
                      tbl_int.h.html \
                      tbl_parse.h.html
   
 # === USER CONFIGURATION ===============================================  # === USER CONFIGURATION ===============================================
   
Line 578  mandoc-$(VERSION).tar.gz: $(DISTFILES)
Line 585  mandoc-$(VERSION).tar.gz: $(DISTFILES)
         ( cd .dist/ && tar zcf ../$@ mandoc-$(VERSION) )          ( cd .dist/ && tar zcf ../$@ mandoc-$(VERSION) )
         rm -rf .dist/          rm -rf .dist/
   
   dist-install: dist
           $(INSTALL_DATA) mandoc-$(VERSION).tar.gz mandoc-$(VERSION).sha256 \
               $(HTDOCDIR)/snapshots
   
 # === SUFFIX RULES =====================================================  # === SUFFIX RULES =====================================================
   
 .SUFFIXES:       .1       .3       .5       .7       .8       .h  .SUFFIXES:       .1       .3       .5       .7       .8       .h
Line 587  mandoc-$(VERSION).tar.gz: $(DISTFILES)
Line 598  mandoc-$(VERSION).tar.gz: $(DISTFILES)
         highlight -I $< > $@          highlight -I $< > $@
   
 .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc  .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc
         ./mandoc -Thtml -O \          mandoc -Thtml -Wwarning,stop \
         style=/mandoc.css,man=/man/%N.%S.html,includes=/includes/%I.html \                  -O 'style=/mandoc.css,man=/man/%N.%S.html;https://man.openbsd.org/%N.%S,includes=/includes/%I.html' \
         $< > $@                  $< > $@

Legend:
Removed from v.1.526  
changed lines
  Added in v.1.530

CVSweb