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

Diff for /mandoc/Makefile between version 1.426 and 1.427

version 1.426, 2014/08/05 01:07:00 version 1.427, 2014/08/05 01:45:02
Line 34  VERSION   = 1.13.0
Line 34  VERSION   = 1.13.0
 #  #
 CFLAGS          += -DUSE_WCHAR  CFLAGS          += -DUSE_WCHAR
   
 CFLAGS          += -I/usr/local/include -g -DHAVE_CONFIG_H  CFLAGS          += -g -DHAVE_CONFIG_H
 CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings  CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
 PREFIX           = /usr/local  PREFIX           = /usr/local
 BINDIR           = $(PREFIX)/bin  BINDIR           = $(PREFIX)/bin
Line 44  MANDIR   = $(PREFIX)/man
Line 44  MANDIR   = $(PREFIX)/man
 EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc  EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc
   
 INSTALL          = install  INSTALL          = install
 INSTALL_PROGRAM  = $(INSTALL) -m 0755  INSTALL_PROGRAM  = $(INSTALL) -m 0555
 INSTALL_DATA     = $(INSTALL) -m 0444  INSTALL_DATA     = $(INSTALL) -m 0444
 INSTALL_LIB      = $(INSTALL) -m 0644  INSTALL_LIB      = $(INSTALL) -m 0444
 INSTALL_SOURCE   = $(INSTALL) -m 0644  INSTALL_SOURCE   = $(INSTALL) -m 0644
 INSTALL_MAN      = $(INSTALL_DATA)  INSTALL_MAN      = $(INSTALL_DATA)
   
Line 63  DBBIN   = makewhatis manpage apropos
Line 63  DBBIN   = makewhatis manpage apropos
 #  #
 #CFLAGS         += -DUSE_MANPATH  #CFLAGS         += -DUSE_MANPATH
   
   # On some systems, SQLite3 may be installed below /usr/local.
   # In that case, uncomment the following two lines.
   #
   #CFLAGS         += -I/usr/local/include
   #DBLIB          += -L/usr/local/lib
   
 # OpenBSD has the ohash functions in libutil.  # OpenBSD has the ohash functions in libutil.
 # Comment the following line if your system doesn't.  # Comment the following line if your system doesn't.
 #  #
Line 91  CGIBINDIR  = $(WWWPREFIX)/cgi-bin
Line 97  CGIBINDIR  = $(WWWPREFIX)/cgi-bin
 # === END OF USER SETTINGS =============================================  # === END OF USER SETTINGS =============================================
   
 ALLBIN           = mandoc preconv demandoc $(DBBIN)  ALLBIN           = mandoc preconv demandoc $(DBBIN)
 DBLIB           += -L/usr/local/lib -lsqlite3  DBLIB           += -lsqlite3
   
 all: $(ALLBIN)  all: $(ALLBIN)
   
Line 100  TESTSRCS  = test-fgetln.c \
Line 106  TESTSRCS  = test-fgetln.c \
                    test-mmap.c \                     test-mmap.c \
                    test-ohash.c \                     test-ohash.c \
                    test-reallocarray.c \                     test-reallocarray.c \
                      test-strcasestr.c \
                    test-strlcat.c \                     test-strlcat.c \
                    test-strlcpy.c \                     test-strlcpy.c \
                    test-strptime.c                     test-strptime.c \
                      test-strsep.c
   
 SRCS             = LICENSE \  SRCS             = LICENSE \
                    Makefile \                     Makefile \
Line 115  SRCS   = LICENSE \
Line 123  SRCS   = LICENSE \
                    att.c \                     att.c \
                    att.in \                     att.in \
                    cgi.c \                     cgi.c \
                      cgi.h.example \
                    chars.c \                     chars.c \
                    chars.in \                     chars.in \
                    compat_fgetln.c \                     compat_fgetln.c \
Line 166  SRCS   = LICENSE \
Line 175  SRCS   = LICENSE \
                    mandoc_aux.c \                     mandoc_aux.c \
                    mandoc_aux.h \                     mandoc_aux.h \
                    mandoc_char.7 \                     mandoc_char.7 \
                      mandoc_html.3 \
                    mandocdb.c \                     mandocdb.c \
                    manpage.c \                     manpage.c \
                    manpath.c \                     manpath.c \
Line 328  WWW_MANS  = apropos.1.html \
Line 338  WWW_MANS  = apropos.1.html \
                    mandoc.1.html \                     mandoc.1.html \
                    preconv.1.html \                     preconv.1.html \
                    mandoc.3.html \                     mandoc.3.html \
                      mandoc_html.3.html \
                    mansearch.3.html \                     mansearch.3.html \
                    tbl.3.html \                     tbl.3.html \
                    mandoc.db.5.html \                     mandoc.db.5.html \

Legend:
Removed from v.1.426  
changed lines
  Added in v.1.427

CVSweb