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

Diff for /mandoc/Makefile between version 1.407 and 1.411

version 1.407, 2014/01/04 01:11:00 version 1.411, 2014/01/19 00:09:38
Line 8 
Line 8 
 #  #
 # CFLAGS        += -DOSNAME="\"OpenBSD 5.4\""  # CFLAGS        += -DOSNAME="\"OpenBSD 5.4\""
   
 VERSION          = 1.12.3  VERSION          = 1.13.0
 VDATE            = 31 December 2013  VDATE            = 4 January 2014
   
 # IFF your system supports multi-byte functions (setlocale(), wcwidth(),  # IFF your system supports multi-byte functions (setlocale(), wcwidth(),
 # 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
Line 59  TESTSRCS  = test-fgetln.c \
Line 59  TESTSRCS  = test-fgetln.c \
                    test-ohash.c \                     test-ohash.c \
                    test-strlcat.c \                     test-strlcat.c \
                    test-strlcpy.c \                     test-strlcpy.c \
                      test-strnlen.c \
                    test-strptime.c                     test-strptime.c
   
 SRCS             = Makefile \  SRCS             = Makefile \
Line 75  SRCS   = Makefile \
Line 76  SRCS   = Makefile \
                    chars.in \                     chars.in \
                    compat_fgetln.c \                     compat_fgetln.c \
                    compat_getsubopt.c \                     compat_getsubopt.c \
                      compat_ohash.c \
                      compat_ohash.h \
                    compat_strcasestr.c \                     compat_strcasestr.c \
                    compat_strlcat.c \                     compat_strlcat.c \
                    compat_strlcpy.c \                     compat_strlcpy.c \
                      compat_strnlen.c \
                    compat_strsep.c \                     compat_strsep.c \
                    config.h.post \                     config.h.post \
                    config.h.pre \                     config.h.pre \
                      configure \
                    demandoc.1 \                     demandoc.1 \
                    demandoc.c \                     demandoc.c \
                    eqn.7 \                     eqn.7 \
Line 118  SRCS   = Makefile \
Line 123  SRCS   = Makefile \
                    mandoc_char.7 \                     mandoc_char.7 \
                    mandocdb.8 \                     mandocdb.8 \
                    mandocdb.c \                     mandocdb.c \
                      manpage.c \
                    manpath.c \                     manpath.c \
                    manpath.h \                     manpath.h \
                      mansearch.c \
                      mansearch.h \
                      mansearch_const.c \
                    mdoc.7 \                     mdoc.7 \
                    mdoc.c \                     mdoc.c \
                    mdoc.h \                     mdoc.h \
Line 197  COMPAT_OBJS  = compat_fgetln.o \
Line 206  COMPAT_OBJS  = compat_fgetln.o \
                    compat_strcasestr.o \                     compat_strcasestr.o \
                    compat_strlcat.o \                     compat_strlcat.o \
                    compat_strlcpy.o \                     compat_strlcpy.o \
                      compat_strnlen.o \
                    compat_strsep.o                     compat_strsep.o
   
 arch.o: arch.in  arch.o: arch.in
Line 240  MANDOC_OBJS  = $(MANDOC_HTML_OBJS) \
Line 250  MANDOC_OBJS  = $(MANDOC_HTML_OBJS) \
                    tree.o                     tree.o
 $(MANDOC_OBJS): main.h mandoc.h mdoc.h man.h config.h out.h  $(MANDOC_OBJS): main.h mandoc.h mdoc.h man.h config.h out.h
   
 MANDOCDB_OBJS    = mandocdb.o manpath.o  MANDOCDB_OBJS    = mandocdb.o mansearch_const.o manpath.o
 $(MANDOCDB_OBJS): mansearch.h mandoc.h mdoc.h man.h config.h manpath.h  $(MANDOCDB_OBJS): mansearch.h mandoc.h mdoc.h man.h config.h manpath.h
   
 PRECONV_OBJS     = preconv.o  PRECONV_OBJS     = preconv.o
Line 354  mdocml.md5: mdocml.tar.gz
Line 364  mdocml.md5: mdocml.tar.gz
 mdocml.tar.gz: $(SRCS)  mdocml.tar.gz: $(SRCS)
         mkdir -p .dist/mdocml-$(VERSION)/          mkdir -p .dist/mdocml-$(VERSION)/
         $(INSTALL_SOURCE) $(SRCS) .dist/mdocml-$(VERSION)          $(INSTALL_SOURCE) $(SRCS) .dist/mdocml-$(VERSION)
         ( cd .dist/ && tar zcf ../$@ ./ )          chmod 755 .dist/mdocml-$(VERSION)/configure
           ( cd .dist/ && tar zcf ../$@ mdocml-$(VERSION) )
         rm -rf .dist/          rm -rf .dist/
   
 index.html: $(INDEX_OBJS)  index.html: $(INDEX_OBJS)

Legend:
Removed from v.1.407  
changed lines
  Added in v.1.411

CVSweb