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

Diff for /mandoc/Makefile between version 1.65 and 1.70

version 1.65, 2009/01/21 11:35:26 version 1.70, 2009/02/20 07:45:41
Line 3  VERSION = 1.2.0
Line 3  VERSION = 1.2.0
 CFLAGS += -W -Wall -Wno-unused-parameter -g  CFLAGS += -W -Wall -Wno-unused-parameter -g
   
 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
   
 BINLNS  = tree.ln mdocml.ln  BINLNS  = mdocml.ln
   
 LNS     = $(LIBLNS) $(BINLNS)  LNS     = $(LIBLNS) $(BINLNS)
   
Line 14  LLNS = llib-llibmdoc.ln llib-lmdocml.ln
Line 14  LLNS = llib-llibmdoc.ln llib-lmdocml.ln
 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
   
 BINOBJS = tree.o mdocml.o  BINOBJS = mdocml.o
   
 OBJS    = $(LIBOBJS) $(BINOBJS)  OBJS    = $(LIBOBJS) $(BINOBJS)
   
 SRCS    = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c argv.c \  SRCS    = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c argv.c \
           validate.c action.c tree.c            validate.c action.c
   
 HEADS   = mdoc.h private.h  HEADS   = mdoc.h private.h
   
Line 76  SUCCEED = regress/test.prologue.05 \
Line 76  SUCCEED = regress/test.prologue.05 \
           regress/test.prologue.17 \            regress/test.prologue.17 \
           regress/test.prologue.20 \            regress/test.prologue.20 \
           regress/test.sh.00 \            regress/test.sh.00 \
           regress/test.name.00            regress/test.name.00 \
             regress/test.list.00 \
             regress/test.list.01 \
             regress/test.list.02 \
             regress/test.list.03 \
             regress/test.list.04 \
             regress/test.list.05 \
             regress/test.list.06
   
 all:    $(BINS)  all:    $(BINS)
   
Line 89  dist: mdocml-$(VERSION).tar.gz
Line 96  dist: mdocml-$(VERSION).tar.gz
   
 port:   mdocml-oport-$(VERSION).tar.gz  port:   mdocml-oport-$(VERSION).tar.gz
   
 regress::  regress:: mdocml
         @for f in $(FAIL); do \          @for f in $(FAIL); do \
                 echo "./mdocml $$f" ; \                  echo "./mdocml $$f" ; \
                 ./mdocml $$f 2>/dev/null || continue ; exit 1 ; done                  ./mdocml $$f 2>/dev/null || continue ; exit 1 ; done
Line 128  macro.o: macro.c private.h
Line 135  macro.o: macro.c private.h
 strings.ln: strings.c private.h  strings.ln: strings.c private.h
   
 strings.o: strings.c private.h  strings.o: strings.c private.h
   
 tree.ln: tree.c mdoc.h  
   
 tree.o: tree.c mdoc.h  
   
 hash.ln: hash.c private.h  hash.ln: hash.c private.h
   

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.70

CVSweb