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

Diff for /mandoc/Makefile between version 1.525 and 1.528

version 1.525, 2018/12/13 07:28:27 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 185  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 233  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 353  WWW_INCS  = eqn.h.html \
Line 358  WWW_INCS  = eqn.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 427  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) eqn.h 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 486  uninstall:
Line 492  uninstall:
         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.525  
changed lines
  Added in v.1.528

CVSweb