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

Diff for /mandoc/Makefile between version 1.521 and 1.528

version 1.521, 2018/12/12 21:54:35 version 1.528, 2019/03/04 13:01:57
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 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 155  DISTFILES  = INSTALL \
Line 157  DISTFILES  = INSTALL \
                    dbm_map.h \                     dbm_map.h \
                    demandoc.1 \                     demandoc.1 \
                    eqn.7 \                     eqn.7 \
                      eqn.h \
                      eqn_parse.h \
                    gmdiff \                     gmdiff \
                    html.h \                     html.h \
                    lib.in \                     lib.in \
                    libman.h \                     libman.h \
                    libmandoc.h \                     libmandoc.h \
                    libmdoc.h \                     libmdoc.h \
                    libroff.h \  
                    main.h \                     main.h \
                    makewhatis.8 \                     makewhatis.8 \
                    man.1 \                     man.1 \
Line 184  DISTFILES  = INSTALL \
Line 187  DISTFILES  = INSTALL \
                    mandoc_html.3 \                     mandoc_html.3 \
                    mandoc_malloc.3 \                     mandoc_malloc.3 \
                    mandoc_ohash.h \                     mandoc_ohash.h \
                      mandoc_parse.h \
                    mandoc_xr.h \                     mandoc_xr.h \
                    mandocd.8 \                     mandocd.8 \
                    mansearch.3 \                     mansearch.3 \
Line 198  DISTFILES  = INSTALL \
Line 202  DISTFILES  = INSTALL \
                    roff.h \                     roff.h \
                    roff_int.h \                     roff_int.h \
                    soelim.1 \                     soelim.1 \
                    st.in \  
                    tag.h \                     tag.h \
                    tbl.3 \                     tbl.3 \
                    tbl.7 \                     tbl.7 \
                    tbl.h \                     tbl.h \
                      tbl_int.h \
                      tbl_parse.h \
                    term.h \                     term.h \
                    $(SRCS) \                     $(SRCS) \
                    $(TESTSRCS)                     $(TESTSRCS)
Line 231  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 346  WWW_MANS  = apropos.1.html \
Line 353  WWW_MANS  = apropos.1.html \
                    man.cgi.8.html \                     man.cgi.8.html \
                    mandocd.8.html                     mandocd.8.html
   
 WWW_INCS         = man.h.html \  WWW_INCS         = eqn.h.html \
                      man.h.html \
                    manconf.h.html \                     manconf.h.html \
                    mandoc.h.html \                     mandoc.h.html \
                    mandoc_aux.h.html \                     mandoc_aux.h.html \
                      mandoc_parse.h.html \
                    mansearch.h.html \                     mansearch.h.html \
                    mdoc.h.html \                     mdoc.h.html \
                    roff.h.html \                     roff.h.html \
Line 424  lib-install: libmandoc.a
Line 433  lib-install: libmandoc.a
         mkdir -p $(DESTDIR)$(INCLUDEDIR)          mkdir -p $(DESTDIR)$(INCLUDEDIR)
         mkdir -p $(DESTDIR)$(MANDIR)/man3          mkdir -p $(DESTDIR)$(MANDIR)/man3
         $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)          $(INSTALL_LIB) libmandoc.a $(DESTDIR)$(LIBDIR)
         $(INSTALL_LIB) man.h mandoc.h mandoc_aux.h mdoc.h roff.h tbl.h \          $(INSTALL_LIB) eqn.h man.h mandoc.h mandoc_aux.h mandoc_parse.h \
                 $(DESTDIR)$(INCLUDEDIR)                  mdoc.h roff.h tbl.h $(DESTDIR)$(INCLUDEDIR)
         $(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \          $(INSTALL_MAN) mandoc.3 mandoc_escape.3 mandoc_malloc.3 \
                 mansearch.3 mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3                  mansearch.3 mchars_alloc.3 tbl.3 $(DESTDIR)$(MANDIR)/man3
   
Line 479  uninstall:
Line 488  uninstall:
         rm -f $(DESTDIR)$(MANDIR)/man3/mansearch.3          rm -f $(DESTDIR)$(MANDIR)/man3/mansearch.3
         rm -f $(DESTDIR)$(MANDIR)/man3/mchars_alloc.3          rm -f $(DESTDIR)$(MANDIR)/man3/mchars_alloc.3
         rm -f $(DESTDIR)$(MANDIR)/man3/tbl.3          rm -f $(DESTDIR)$(MANDIR)/man3/tbl.3
           rm -f $(DESTDIR)$(INCLUDEDIR)/eqn.h
         rm -f $(DESTDIR)$(INCLUDEDIR)/man.h          rm -f $(DESTDIR)$(INCLUDEDIR)/man.h
         rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc.h          rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc.h
         rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc_aux.h          rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc_aux.h
           rm -f $(DESTDIR)$(INCLUDEDIR)/mandoc_parse.h
         rm -f $(DESTDIR)$(INCLUDEDIR)/mdoc.h          rm -f $(DESTDIR)$(INCLUDEDIR)/mdoc.h
         rm -f $(DESTDIR)$(INCLUDEDIR)/roff.h          rm -f $(DESTDIR)$(INCLUDEDIR)/roff.h
         rm -f $(DESTDIR)$(INCLUDEDIR)/tbl.h          rm -f $(DESTDIR)$(INCLUDEDIR)/tbl.h

Legend:
Removed from v.1.521  
changed lines
  Added in v.1.528

CVSweb