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

Diff for /mandoc/Makefile between version 1.432 and 1.439

version 1.432, 2014/08/05 12:50:52 version 1.439, 2014/08/12 21:35:48
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.13.0  VERSION          = 1.13.1
   
 # === USER SETTINGS ====================================================  # === USER SETTINGS ====================================================
   
Line 30  VERSION   = 1.13.0
Line 30  VERSION   = 1.13.0
 # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a  # putwchar()) AND has __STDC_ISO_10646__ (that is, wchar_t is simply a
 # UCS-4 value) should you define USE_WCHAR.  If you define it and your  # UCS-4 value) should you define USE_WCHAR.  If you define it and your
 # system DOESN'T support this, -Tlocale will produce garbage.  # system DOESN'T support this, -Tlocale will produce garbage.
 # If you don't define it, -Tlocale is a synonym for -Tacsii.  # If you don't define it, -Tlocale is a synonym for -Tascii.
 #  #
 CFLAGS          += -DUSE_WCHAR  CFLAGS          += -DUSE_WCHAR
   
 CFLAGS          += -g -DHAVE_CONFIG_H  CFLAGS          += -g -W -Wall -Wstrict-prototypes
 CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings  CFLAGS          += -Wno-unused-parameter -Wwrite-strings
 PREFIX           = /usr/local  PREFIX           = /usr/local
 BINDIR           = $(PREFIX)/bin  BINDIR           = $(PREFIX)/bin
 INCLUDEDIR       = $(PREFIX)/include/mandoc  INCLUDEDIR       = $(PREFIX)/include/mandoc
Line 52  INSTALL_MAN  = $(INSTALL_DATA)
Line 52  INSTALL_MAN  = $(INSTALL_DATA)
   
 # --- user settings related to database support ------------------------  # --- user settings related to database support ------------------------
   
 # If you want to build without database support, for example to avoid  # Building apropos(1) and makewhatis(8) requires SQLite3.
 # the dependency on SQLite3, comment the following line.  # To avoid that dependency, comment the following line.
 # However, you won't get apropos(1) and makewhatis(8) in that case.  
 #  #
 BUILD_TARGETS   += db-build  BUILD_TARGETS   += db-build
   
Line 116  CGIBIN   = man.cgi
Line 115  CGIBIN   = man.cgi
   
 DBLIB           += -lsqlite3  DBLIB           += -lsqlite3
   
 TESTSRCS         = test-fgetln.c \  TESTSRCS         = test-dirent-namlen.c \
                      test-fgetln.c \
                      test-fts.c \
                    test-getsubopt.c \                     test-getsubopt.c \
                    test-mmap.c \                     test-mmap.c \
                    test-ohash.c \                     test-ohash.c \
Line 134  SRCS   = apropos.c \
Line 135  SRCS   = apropos.c \
                    cgi.c \                     cgi.c \
                    chars.c \                     chars.c \
                    compat_fgetln.c \                     compat_fgetln.c \
                      compat_fts.c \
                    compat_getsubopt.c \                     compat_getsubopt.c \
                    compat_ohash.c \                     compat_ohash.c \
                    compat_reallocarray.c \                     compat_reallocarray.c \
Line 189  SRCS   = apropos.c \
Line 191  SRCS   = apropos.c \
                    vol.c \                     vol.c \
                    $(TESTSRCS)                     $(TESTSRCS)
   
 DISTFILES        = LICENSE \  DISTFILES        = INSTALL \
                      LICENSE \
                    Makefile \                     Makefile \
                    Makefile.depend \                     Makefile.depend \
                    NEWS \                     NEWS \
Line 199  DISTFILES  = LICENSE \
Line 202  DISTFILES  = LICENSE \
                    att.in \                     att.in \
                    cgi.h.example \                     cgi.h.example \
                    chars.in \                     chars.in \
                      compat_fts.h \
                    compat_ohash.h \                     compat_ohash.h \
                    config.h.post \                     config.h.post \
                    config.h.pre \                     config.h.pre \
Line 280  LIBMANDOC_OBJS  = $(LIBMAN_OBJS) \
Line 284  LIBMANDOC_OBJS  = $(LIBMAN_OBJS) \
                    read.o                     read.o
   
 COMPAT_OBJS      = compat_fgetln.o \  COMPAT_OBJS      = compat_fgetln.o \
                      compat_fts.o \
                    compat_getsubopt.o \                     compat_getsubopt.o \
                    compat_ohash.o \                     compat_ohash.o \
                    compat_reallocarray.o \                     compat_reallocarray.o \
Line 487  mdocml.tar.gz: $(DISTFILES)
Line 492  mdocml.tar.gz: $(DISTFILES)
   
 config.h: configure config.h.pre config.h.post $(TESTSRCS)  config.h: configure config.h.pre config.h.post $(TESTSRCS)
         rm -f config.log          rm -f config.log
         CC="$(CC)" CFLAGS="$(CFLAGS)" VERSION="$(VERSION)" ./configure          CC="$(CC)" CFLAGS="$(CFLAGS)" DBLIB="$(DBLIB)" \
                   VERSION="$(VERSION)" ./configure
   
 .PHONY:          base-install cgi-install db-install install www-install  .PHONY:          base-install cgi-install db-install install www-install
 .PHONY:          clean depend  .PHONY:          clean depend

Legend:
Removed from v.1.432  
changed lines
  Added in v.1.439

CVSweb