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

Diff for /mandoc/Makefile between version 1.60 and 1.64

version 1.60, 2009/01/20 13:44:05 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 42  dist: mdocml-$(VERSION).tar.gz
Line 72  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/
         mkdir -p $(PREFIX)/include/mdoc/          mkdir -p $(PREFIX)/include/mdoc/
Line 52  install:
Line 90  install:
         install -m 0444 mdoc.3 $(PREFIX)/man/man3/          install -m 0444 mdoc.3 $(PREFIX)/man/man3/
         install -m 0644 libmdoc.a $(PREFIX)/lib/          install -m 0644 libmdoc.a $(PREFIX)/lib/
         install -m 0444 mdoc.h $(PREFIX)/include/          install -m 0444 mdoc.h $(PREFIX)/include/
   
   install-dist: mdocml-$(VERSION).tar.gz mdocml-oport-$(VERSION).tar.gz
           install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/
           install -m 0644 mdocml-$(VERSION).tar.gz $(PREFIX)/mdocml.tar.gz
           install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/
           install -m 0644 mdocml-oport-$(VERSION).tar.gz $(PREFIX)/mdocml-oport.tar.gz
   
 uninstall:  uninstall:
         rm -f $(PREFIX)/bin/mdocml          rm -f $(PREFIX)/bin/mdocml

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

CVSweb