groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Groff-commit] groff ./ChangeLog ./Makefile.in doc/Makefile.in


From: Werner LEMBERG
Subject: [Groff-commit] groff ./ChangeLog ./Makefile.in doc/Makefile.in
Date: Thu, 24 Mar 2005 12:05:13 -0500

CVSROOT:        /cvsroot/groff
Module name:    groff
Branch:         
Changes by:     Werner LEMBERG <address@hidden> 05/03/24 17:05:13

Modified files:
        .              : ChangeLog Makefile.in 
        doc            : Makefile.in 

Log message:
        * Makefile.in (NOMAKEDIRS): Add contrib/gdiffmk/tests.
        (dist): Search Makefile while descending into $(EXTRADIRS).
        
        * doc/Makefile.in (.PHONY): Add.
        (clean): Don't remove *.png and *.eps.
        Don't handle *.gif.
        (realclean): Remove *.png and *.eps.
        (extraclean): Depend on distclean.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/ChangeLog.diff?tr1=1.805&tr2=1.806&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/Makefile.in.diff?tr1=1.83&tr2=1.84&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/doc/Makefile.in.diff?tr1=1.14&tr2=1.15&r1=text&r2=text

Patches:
Index: groff/ChangeLog
diff -u groff/ChangeLog:1.805 groff/ChangeLog:1.806
--- groff/ChangeLog:1.805       Fri Mar 18 08:33:19 2005
+++ groff/ChangeLog     Thu Mar 24 17:05:12 2005
@@ -1,3 +1,14 @@
+2005-03-24  Werner LEMBERG  <address@hidden>
+
+       * Makefile.in (NOMAKEDIRS): Add contrib/gdiffmk/tests.
+       (dist): Search Makefile while descending into $(EXTRADIRS).
+
+       * doc/Makefile.in (.PHONY): Add.
+       (clean): Don't remove *.png and *.eps.
+       Don't handle *.gif.
+       (realclean): Remove *.png and *.eps.
+       (extraclean): Depend on distclean.
+
 2005-03-18  Larry Kollar  <address@hidden>
 
        Add numbered and definition lists to www.tmac.
Index: groff/Makefile.in
diff -u groff/Makefile.in:1.83 groff/Makefile.in:1.84
--- groff/Makefile.in:1.83      Mon Feb 28 13:57:53 2005
+++ groff/Makefile.in   Thu Mar 24 17:05:12 2005
@@ -1,4 +1,4 @@
-# Copyright (C) 1989-2000, 2001, 2002, 2003, 2004
+# Copyright (C) 1989-2000, 2001, 2002, 2003, 2004, 2005
 #   Free Software Foundation, Inc.
 #      Written by James Clark (address@hidden)
 # 
@@ -322,7 +322,7 @@
 # -DHAVE_STRUCT_EXCEPTION      if <math.h> defines struct exception
 # -DRETSIGTYPE=int             if signal handlers return int not void  
 # -DIS_EBCDIC_HOST             if the host's encoding is EBCDIC
-# -DPAGEA4                     if the the printer's page size is A4
+# -DPAGE=A4                    if the the printer's page size is A4
 # -DGHOSTSCRIPT=gs             the name (and directory if required) of the
 #                              ghostscript program
 address@hidden@
@@ -566,6 +566,7 @@
   contrib/mm/mm \
   contrib/mom/examples \
   contrib/mom/momdoc \
+  contrib/gdiffmk/tests \
   src/libs/snprintf
 DISTDIRS=\
   $(INCDIRS) $(LIBDIRS) $(PROGDIRS) $(DEVDIRS) $(XDEVDIRS) $(OTHERDEVDIRS) \
@@ -694,7 +695,12 @@
        $(MAKE) srcdir=. VPATH=. distfiles; \
        $(MAKE) srcdir=. VPATH=. extraclean; \
        for d in $(EXTRADIRS); do \
-         (cd $$d; $(MAKE) extraclean); \
+         (cd $$d; \
+          if test -f Makefile; then \
+            $(MAKE) extraclean; \
+          else \
+            $(MAKE) -f $(top_builddir)/$$d/Makefile extraclean; \
+          fi); \
        done; \
        rm -f Makefile; \
        $(LN_S) $$srcdir/Makefile.init Makefile
Index: groff/doc/Makefile.in
diff -u groff/doc/Makefile.in:1.14 groff/doc/Makefile.in:1.15
--- groff/doc/Makefile.in:1.14  Thu Mar 17 08:29:15 2005
+++ groff/doc/Makefile.in       Thu Mar 24 17:05:13 2005
@@ -82,6 +82,7 @@
 imagedir=img
 
 .SUFFIXES: .me .ms .ps .html .txt .texinfo .dvi .pdf
+.PHONY: all prepare_examples clean distclean realclean extraclean
 
 # For simplicity, we always call grn and eqn.
 .me.txt:
@@ -132,7 +133,7 @@
 
 
 clean:
-       -rm -f *.ps *.html *.txt *.png *.eps *.gif *.dit core
+       -rm -f *.ps *.html *.txt core
        -rm -f *.aux *.dvi *.pdf *.log *.toc texput.log
        -rm -f *.cp *.cps *.cv *.cn *.es *.ess *.fn *.fns *.ky *.kys \
                *.ma *.mas *.op *.ops *.pg *.pgs *.rq *.rqs *.st *.sts \
@@ -142,6 +143,7 @@
 distclean: clean
 
 realclean: distclean
+       -rm -f *.png *.eps
 
-extraclean: clean
+extraclean: distclean
        -rm -f core *~ \#* junk temp grot




reply via email to

[Prev in Thread] Current Thread [Next in Thread]