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

Diff for /mandoc/Makefile between version 1.133 and 1.145

version 1.133, 2009/03/19 16:18:36 version 1.145, 2009/03/22 19:10:48
Line 9  INSTALL_DATA = install -m 0444
Line 9  INSTALL_DATA = install -m 0444
 INSTALL_LIB     = install -m 0644  INSTALL_LIB     = install -m 0644
 INSTALL_MAN     = $(INSTALL_DATA)  INSTALL_MAN     = $(INSTALL_DATA)
   
 VERSION    = 1.6.0  VERSION    = 1.6.9
 VDATE      = 19 March 2009  VDATE      = 22 March 2009
   
 VFLAGS     = -DVERSION=\"$(VERSION)\"  VFLAGS     = -DVERSION=\"$(VERSION)\"
 CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g  CFLAGS    += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
 LINTFLAGS += $(VFLAGS)  LINTFLAGS += $(VFLAGS)
 CFLAGS    += $(VFLAGS)  CFLAGS    += $(VFLAGS)
   
   # If you want to strip `Xo/Xc' macro pairs, enable this.  Really, only
   # OpenBSD should be doing this while it kicks its cruft.
   CFLAGS    += -DSTRIP_XO
   LINTFLAGS += -DSTRIP_XO
   
 LIBLNS     = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \  LIBLNS     = macro.ln mdoc.ln hash.ln strings.ln xstd.ln argv.ln \
              validate.ln action.ln lib.ln att.ln arch.ln vol.ln \               validate.ln action.ln lib.ln att.ln arch.ln vol.ln \
              msec.ln st.ln               msec.ln st.ln
Line 25  LIBOBJS    = macro.o mdoc.o hash.o strings.o xstd.o ar
Line 30  LIBOBJS    = macro.o mdoc.o hash.o strings.o xstd.o ar
 LIBSRCS    = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \  LIBSRCS    = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \
              action.c lib.c att.c arch.c vol.c msec.c st.c               action.c lib.c att.c arch.c vol.c msec.c st.c
   
 MAINLNS    = main.ln term.ln ascii.ln terminal.ln tree.ln  MAINLNS    = main.ln term.ln ascii.ln terminal.ln tree.ln compat.ln
 MAINOBJS   = main.o term.o ascii.o terminal.o tree.o  MAINOBJS   = main.o term.o ascii.o terminal.o tree.o compat.o
 MAINSRCS   = main.c term.c ascii.c terminal.c tree.c  MAINSRCS   = main.c term.c ascii.c terminal.c tree.c compat.c
   
 LLNS       = llib-llibmdoc.ln llib-lmandoc.ln  LLNS       = llib-llibmdoc.ln llib-lmandoc.ln
 LNS        = $(MAINLNS) $(LIBLNS)  LNS        = $(MAINLNS) $(LIBLNS)
Line 36  OBJS    = $(LIBOBJS) $(MAINOBJS)
Line 41  OBJS    = $(LIBOBJS) $(MAINOBJS)
 SRCS       = $(LIBSRCS) $(MAINSRCS)  SRCS       = $(LIBSRCS) $(MAINSRCS)
 DATAS      = arch.in att.in lib.in msec.in st.in vol.in ascii.in  DATAS      = arch.in att.in lib.in msec.in st.in vol.in ascii.in
 HEADS      = mdoc.h private.h term.h  HEADS      = mdoc.h private.h term.h
 SGMLS      = index.sgml  SGMLS      = index.sgml
 HTMLS      = index.html  HTMLS      = index.html
 STATICS    = style.css external.png  STATICS    = style.css external.png
 TARGZS     = mdocml-$(VERSION).tar.gz \  TARGZS     = mdocml-$(VERSION).tar.gz \
              mdocml-oport-$(VERSION).tar.gz \               mdocml-oport-$(VERSION).tar.gz \
              mdocml-nport-$(VERSION).tar.gz               mdocml-nport-$(VERSION).tar.gz
 MANS       = mandoc.1 mdoc.3 mdoc.7  MANS       = mandoc.1 mdoc.3 mdoc.7 manuals.7
 BINS       = mandoc  BINS       = mandoc
 CLEAN      = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) $(TARGZS)  CLEAN      = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) $(TARGZS)
 INSTALL    = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \  INSTALL    = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \

Legend:
Removed from v.1.133  
changed lines
  Added in v.1.145

CVSweb