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

Diff for /mandoc/Makefile between version 1.61 and 1.64

version 1.61, 2009/01/20 15:05:01 version 1.64, 2009/01/20 22:55:46
Line 1 
Line 1 
 VERSION = 1.1.0  VERSION = 1.2.0
   
 CFLAGS += -W -Wall -Wno-unused-parameter -g  CFLAGS += -W -Wall -Wno-unused-parameter -g
   
Line 25  SRCS = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c
Line 25  SRCS = macro.c mdoc.c mdocml.c hash.c strings.c xstd.c
   
 HEADS   = mdoc.h private.h  HEADS   = mdoc.h private.h
   
   MANS    = mdocml.1 mdoc.3
   
 BINS    = mdocml  BINS    = mdocml
   
 CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS)  CLEAN   = $(BINS) $(LNS) $(LLNS) $(LIBS) $(OBJS)
   
 INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR  INSTALL = $(SRCS) $(HEADS) Makefile Makefile.port DESCR $(MANS)
   
   FAIL    = regress/test.empty \
             regress/test.prologue.00 \
             regress/test.prologue.01 \
             regress/test.prologue.02 \
             regress/test.prologue.03 \
             regress/test.prologue.04 \
             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.21 \
             regress/test.prologue.22 \
             regress/test.prologue.23 \
             regress/test.prologue.24
   
   SUCCEED = regress/test.prologue.05 \
             regress/test.prologue.07 \
             regress/test.prologue.08 \
             regress/test.prologue.09 \
             regress/test.prologue.10 \
             regress/test.prologue.11 \
             regress/test.prologue.12 \
             regress/test.prologue.14 \
             regress/test.prologue.17 \
             regress/test.prologue.20
   
 all:    $(BINS)  all:    $(BINS)
   
 lint:   $(LLNS)  lint:   $(LLNS)
Line 41  clean:
Line 71  clean:
 dist:   mdocml-$(VERSION).tar.gz  dist:   mdocml-$(VERSION).tar.gz
   
 port:   mdocml-oport-$(VERSION).tar.gz  port:   mdocml-oport-$(VERSION).tar.gz
   
   regress::
           @for f in $(FAIL); do \
                   echo "./mdocml $$f" ; \
                   ./mdocml $$f 2>/dev/null || continue ; exit 1 ; done
           @for f in $(SUCCEED); do \
                   echo "./mdocml $$f" ; \
                   ./mdocml $$f 2>/dev/null || exit 1 ; done
   
 install:  install:
         mkdir -p $(PREFIX)/bin/          mkdir -p $(PREFIX)/bin/

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.64

CVSweb