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

Diff for /mandoc/Makefile between version 1.107 and 1.108

version 1.107, 2009/03/05 13:12:12 version 1.108, 2009/03/06 14:13:47
Line 1 
Line 1 
 .SUFFIXES:      .html .sgml  .SUFFIXES:      .html .sgml
   
 VERSION = 1.3.18  VERSION = 1.3.19
 VDATE   = 04 March 2009  VDATE   = 05 March 2009
   
 BINDIR          = $(PREFIX)/bin  BINDIR          = $(PREFIX)/bin
 INCLUDEDIR      = $(PREFIX)/include  INCLUDEDIR      = $(PREFIX)/include
Line 14  INSTALL_LIB = install -m 0644
Line 14  INSTALL_LIB = install -m 0644
 INSTALL_MAN     = $(INSTALL_DATA)  INSTALL_MAN     = $(INSTALL_DATA)
   
 CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g  CFLAGS += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -g
   CFLAGS += -DVERSION=\"$(VERSION)\"
   
 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            validate.ln action.ln lib.ln att.ln arch.ln vol.ln \
             msec.ln st.ln
   
 TREELNS = mdoctree.ln mmain.ln  TREELNS = mdoctree.ln mmain.ln
   
Line 31  LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocte
Line 33  LLNS = llib-llibmdoc.ln llib-lmdoctree.ln llib-lmdocte
 LIBS    = libmdoc.a  LIBS    = libmdoc.a
   
 LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \  LIBOBJS = macro.o mdoc.o hash.o strings.o xstd.o argv.o \
           validate.o action.o            validate.o action.o lib.o att.o arch.o vol.o msec.o \
             st.o
   
 TERMOBJS= mdocterm.o mmain.o term.o  TERMOBJS= mdocterm.o mmain.o term.o
   
Line 39  TREEOBJS= mdoctree.o mmain.o
Line 42  TREEOBJS= mdoctree.o mmain.o
   
 LINTOBJS= mdoclint.o mmain.o  LINTOBJS= mdoclint.o mmain.o
   
 OBJS    = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS)  OBJS    = $(LIBOBJS) $(TERMOBJS) $(TREEOBJS) $(LINTOBJS)
   
 SRCS    = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \  SRCS    = macro.c mdoc.c hash.c strings.c xstd.c argv.c validate.c \
           action.c term.c mdoctree.c mdocterm.c mmain.c mdoclint.c            action.c term.c mdoctree.c mdocterm.c mmain.c mdoclint.c
   
   SCRIPTS = strings.sh
   
   GEN     = lib.c att.c arch.c vol.c msec.c st.c
   
 HEADS   = mdoc.h private.h term.h mmain.h  HEADS   = mdoc.h private.h term.h mmain.h
   
 SGMLS   = index.sgml  SGMLS   = index.sgml
Line 60  MANS = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3
Line 67  MANS = mdoctree.1 mdocterm.1 mdoclint.1 mdoc.3
 BINS    = mdocterm mdoctree mdoclint  BINS    = mdocterm mdoctree mdoclint
   
 CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \  CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS) $(HTMLS) \
           $(TARGZS)            $(TARGZS) $(GEN)
   
 INSTALL = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \  INSTALL = $(SRCS) $(HEADS) Makefile DESCR $(MANS) $(SGMLS) \
           $(STATICS) Makefile.netbsd Makefile.openbsd            $(STATICS) $(SCRIPTS) Makefile.netbsd Makefile.openbsd
   
 FAIL    = regress/test.empty \  FAIL    = regress/test.empty \
           regress/test.prologue.00 \            regress/test.prologue.00 \
Line 72  FAIL = regress/test.empty \
Line 79  FAIL = regress/test.empty \
           regress/test.prologue.03 \            regress/test.prologue.03 \
           regress/test.prologue.04 \            regress/test.prologue.04 \
           regress/test.prologue.06 \            regress/test.prologue.06 \
           regress/test.prologue.13 \  
           regress/test.prologue.15 \  
           regress/test.prologue.16 \  
           regress/test.prologue.18 \  
           regress/test.prologue.19 \            regress/test.prologue.19 \
           regress/test.prologue.21 \  
           regress/test.prologue.22 \  
           regress/test.prologue.23 \            regress/test.prologue.23 \
           regress/test.prologue.24 \            regress/test.prologue.24 \
           regress/test.prologue.25 \  
           regress/test.prologue.26 \  
           regress/test.prologue.27 \            regress/test.prologue.27 \
           regress/test.prologue.28 \            regress/test.prologue.28 \
           regress/test.prologue.29 \  
           regress/test.prologue.30 \            regress/test.prologue.30 \
           regress/test.prologue.31 \            regress/test.prologue.31 \
           regress/test.prologue.32 \            regress/test.prologue.32 \
           regress/test.prologue.33 \  
           regress/test.sh.03 \            regress/test.sh.03 \
           regress/test.escape.01 \            regress/test.escape.01 \
           regress/test.escape.02 \            regress/test.escape.02 \
Line 112  SUCCEED = regress/test.prologue.05 \
Line 109  SUCCEED = regress/test.prologue.05 \
           regress/test.prologue.10 \            regress/test.prologue.10 \
           regress/test.prologue.11 \            regress/test.prologue.11 \
           regress/test.prologue.12 \            regress/test.prologue.12 \
             regress/test.prologue.13 \
           regress/test.prologue.14 \            regress/test.prologue.14 \
             regress/test.prologue.15 \
             regress/test.prologue.16 \
           regress/test.prologue.17 \            regress/test.prologue.17 \
             regress/test.prologue.18 \
           regress/test.prologue.20 \            regress/test.prologue.20 \
             regress/test.prologue.21 \
             regress/test.prologue.22 \
             regress/test.prologue.25 \
             regress/test.prologue.26 \
             regress/test.prologue.29 \
             regress/test.prologue.33 \
           regress/test.sh.00 \            regress/test.sh.00 \
           regress/test.name.00 \            regress/test.name.00 \
           regress/test.name.01 \            regress/test.name.01 \
Line 197  uninstall:
Line 204  uninstall:
         rm -f $(MANDIR)/man3/mdoc.3          rm -f $(MANDIR)/man3/mdoc.3
         rm -f $(LIBDIR)/libmdoc.a          rm -f $(LIBDIR)/libmdoc.a
         rm -f $(INCLUDEDIR)/mdoc.h          rm -f $(INCLUDEDIR)/mdoc.h
   
   lib.ln: lib.c private.h
   lib.o: lib.c private.h
   
   att.ln: att.c private.h
   att.o: att.c private.h
   
   arch.ln: arch.c private.h
   arch.o: arch.c private.h
   
   vol.ln: vol.c private.h
   vol.o: vol.c private.h
   
   msec.ln: msec.c private.h
   msec.o: msec.c private.h
   
   st.ln: st.c private.h
   st.o: st.c private.h
   
   lib.c: lib.in strings.sh
           sh strings.sh -o $@ lib lib.in
   
   st.c: st.in strings.sh
           sh strings.sh -o $@ st st.in
   
   msec.c: msec.in strings.sh
           sh strings.sh -o $@ msec msec.in
   
   att.c: att.in strings.sh
           sh strings.sh -o $@ att att.in
   
   arch.c: arch.in strings.sh
           sh strings.sh -o $@ arch arch.in
   
   vol.c: vol.in strings.sh
           sh strings.sh -o $@ vol vol.in
   
 macro.ln: macro.c private.h  macro.ln: macro.c private.h
 macro.o: macro.c private.h  macro.o: macro.c private.h

Legend:
Removed from v.1.107  
changed lines
  Added in v.1.108

CVSweb