Patch for cleaning tree of automatically generated files


To ng-spice <ng-spice-devel@ieee.ing.uniroma1.it>
From Arno <A.W.Peters@ieee.org>
Date Tue, 7 Dec 1999 23:59:10 +0100
Delivered-To mailing list ng-spice-devel@ieee.ing.uniroma1.it
Mailing-List contact ng-spice-devel-help@ieee.ing.uniroma1.it; run by ezmlm
Reply-To ng-spice-devel@ieee.ing.uniroma1.it
User-Agent Mutt/1.0i

Hi all,

This has been bugging me for a little while.

A common situation: you want to send somebody the diffs to some
development work you've been doing.  Only diff will kindly slam all
alterations to the automatically generated files into the patch file.

Not any more.  The enclosed patch is against ng-spice-rework-3 and
will remove all automatically generated files with the following
commands

  ./autogen.sh
  ./configure
  make maintainer-clean

(Side note: autogen.sh needs to be made executable)

As an example of usage: to diff orig_tree against your
latest_hack_tree, make maintainer-clean in both directories and run

  diff -ruN orig_tree latest_hack_tree > latest_hack.patch


Regards,
-- 
Arno

diff -ruN ng-spice-rework-3/ChangeLog ng-spice/ChangeLog
--- ng-spice-rework-3/ChangeLog Mon Nov 15 11:35:07 1999
+++ ng-spice/ChangeLog  Tue Dec  7 23:36:49 1999
@@ -1,3 +1,10 @@
+1999-12-07  Arno Peters  <A.W.Peters@ieee.org>
+
+       * Added MAINTAINERCLEANFILES to Makefile.am to eliminate
+       automatically generated cruft from patches.  To create a minimal
+       patch between two trees, just do `make maintainer-clean' on both
+       trees and run `diff -ruN tree1 tree2'.
+
 1999-10-15  Emmanuel Rouat  <emmanuel.rouat@wanadoo.fr>
 
        * source tree: entirely modified by Arno Peters (after discussion
@@ -97,4 +104,4 @@
 
        - first attempt at autoconf/automake support
 
-       - based on spice3f5-chili, hardly anything touched on it.
\ No newline at end of file
+       - based on spice3f5-chili, hardly anything touched on it.
diff -ruN ng-spice-rework-3/Makefile.am ng-spice/Makefile.am
--- ng-spice-rework-3/Makefile.am       Mon Nov 15 11:35:07 1999
+++ ng-spice/Makefile.am        Tue Dec  7 23:33:10 1999
@@ -3,3 +3,8 @@
 SUBDIRS = doc src man tests
 
 EXTRA_DIST = FAQ acconfig.h notes contrib 
+
+MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
+                       config.h.in config.sub configure install-sh \
+                       missing mkinstalldirs stamp-h.in ltconfig \
+                       ltmain.sh
diff -ruN ng-spice-rework-3/autogen.sh ng-spice/autogen.sh
--- ng-spice-rework-3/autogen.sh        Thu Jan  1 01:00:00 1970
+++ ng-spice/autogen.sh Tue Dec  7 23:31:34 1999
@@ -0,0 +1,73 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+PROJECT=ng-spice
+TEST_TYPE=-d
+FILE=src/circuit
+
+DIE=0
+
+(autoconf --version) < /dev/null > /dev/null 2>&1 || {
+       echo
+       echo "You must have autoconf installed to compile $PROJECT."
+       echo "Download the appropriate package for your distribution,"
+       echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
+       DIE=1
+}
+
+(libtool --version) < /dev/null > /dev/null 2>&1 || {
+       echo
+       echo "You must have libtool installed to compile $PROJECT."
+       echo "Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz"
+       echo "(or a newer version if it is available)"
+       DIE=1
+}
+
+(automake --version) < /dev/null > /dev/null 2>&1 || {
+       echo
+       echo "You must have automake installed to compile $PROJECT."
+       echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
+       echo "(or a newer version if it is available)"
+       DIE=1
+}
+
+if test "$DIE" -eq 1; then
+       exit 1
+fi
+
+test $TEST_TYPE $FILE || {
+       echo "You must run this script in the top-level $PROJECT directory"
+       exit 1
+}
+
+if test -z "$*"; then
+       echo "I am going to run ./configure with no arguments - if you wish "
+        echo "to pass any to it, please specify them on the $0 command line."
+fi
+
+case $CC in
+*lcc | *lcc\ *) am_opt=--include-deps;;
+esac
+
+#echo "Running gettextize...  Ignore non-fatal messages."
+# Hmm, we specify --force here, since otherwise things don't
+# get added reliably, but we don't want to overwrite intl
+# while making dist.
+#echo "no" | gettextize --copy --force
+
+echo "Running libtoolize"
+libtoolize --copy --force
+
+aclocal $ACLOCAL_FLAGS
+
+# optionally feature autoheader
+(autoheader --version)  < /dev/null > /dev/null 2>&1 && autoheader
+
+automake -c -a $am_opt
+autoconf
+
+./configure "$@"
+
+echo 
+echo "Now type 'make' to compile $PROJECT."
+
diff -ruN ng-spice-rework-3/doc/Makefile.am ng-spice/doc/Makefile.am
--- ng-spice-rework-3/doc/Makefile.am   Mon Nov 15 11:35:07 1999
+++ ng-spice/doc/Makefile.am    Tue Dec  7 23:23:06 1999
@@ -4,8 +4,8 @@
 
 info_TEXINFOS = ngspice.texi
 
-
-
-
 CLEANFILES = *.fns *.pg *.tp *.aux  *.cp *.ky *.vr *.fn *.log *.toc *.vrs 
+
 DISTCLEANFILES = $CLEANFILES *.ps *.dvi *.info*
+
+MAINTAINERCLEANFILES = $DISTCLEANFILES Makefile.in
diff -ruN ng-spice-rework-3/man/Makefile.am ng-spice/man/Makefile.am
--- ng-spice-rework-3/man/Makefile.am   Mon Nov 15 11:35:10 1999
+++ ng-spice/man/Makefile.am    Tue Dec  7 23:37:58 1999
@@ -2,3 +2,4 @@
 
 SUBDIRS = man1
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/man/man1/Makefile.am ng-spice/man/man1/Makefile.am
--- ng-spice-rework-3/man/man1/Makefile.am      Mon Nov 15 11:35:10 1999
+++ ng-spice/man/man1/Makefile.am       Tue Dec  7 23:38:15 1999
@@ -3,4 +3,6 @@
 
 man_MANS = spice.1 nutmeg.1 sconvert.1
 
-EXTRA_DIST = $(man_MANS)
\ No newline at end of file
+EXTRA_DIST = $(man_MANS)
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/Makefile.am ng-spice/src/Makefile.am
--- ng-spice-rework-3/src/Makefile.am   Wed Dec  1 01:03:24 1999
+++ ng-spice/src/Makefile.am    Tue Dec  7 23:25:25 1999
@@ -103,3 +103,4 @@
 
 LIBS = @LIBS@ @X_LIBS@ @X_PRE_LIBS@ @X_EXTRA_LIBS@
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/analysis/Makefile.am 
ng-spice/src/analysis/Makefile.am
--- ng-spice-rework-3/src/analysis/Makefile.am  Mon Nov 15 11:35:08 1999
+++ ng-spice/src/analysis/Makefile.am   Tue Dec  7 23:25:24 1999
@@ -103,3 +103,4 @@
 
 
 INCLUDES =  -I$(top_srcdir)/src/include -I$(top_srcdir)/src/devices
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/circuit/Makefile.am 
ng-spice/src/circuit/Makefile.am
--- ng-spice-rework-3/src/circuit/Makefile.am   Mon Nov 15 11:35:08 1999
+++ ng-spice/src/circuit/Makefile.am    Tue Dec  7 23:39:40 1999
@@ -59,4 +59,6 @@
 
 
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+INCLUDES = -I$(top_srcdir)/src/include
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/Makefile.am 
ng-spice/src/devices/Makefile.am
--- ng-spice-rework-3/src/devices/Makefile.am   Mon Nov 15 11:35:08 1999
+++ ng-spice/src/devices/Makefile.am    Tue Dec  7 23:25:23 1999
@@ -74,3 +74,4 @@
 
 ## Have to do it this clumsy way because of a circular dependancy
 ## in all the *.a file listed above !!
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/asrc/Makefile.am 
ng-spice/src/devices/asrc/Makefile.am
--- ng-spice-rework-3/src/devices/asrc/Makefile.am      Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/asrc/Makefile.am       Tue Dec  7 23:25:22 1999
@@ -22,3 +22,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/bjt/Makefile.am 
ng-spice/src/devices/bjt/Makefile.am
--- ng-spice-rework-3/src/devices/bjt/Makefile.am       Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/bjt/Makefile.am        Tue Dec  7 23:25:22 1999
@@ -36,3 +36,4 @@
 
 INCLUDES = -I$(top_srcdir)/src/include
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/bsim1/Makefile.am 
ng-spice/src/devices/bsim1/Makefile.am
--- ng-spice-rework-3/src/devices/bsim1/Makefile.am     Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/bsim1/Makefile.am      Tue Dec  7 23:25:21 1999
@@ -30,3 +30,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/bsim2/Makefile.am 
ng-spice/src/devices/bsim2/Makefile.am
--- ng-spice-rework-3/src/devices/bsim2/Makefile.am     Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/bsim2/Makefile.am      Tue Dec  7 23:40:51 1999
@@ -27,4 +27,6 @@
 
 
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+INCLUDES = -I$(top_srcdir)/src/include
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/bsim3/Makefile.am 
ng-spice/src/devices/bsim3/Makefile.am
--- ng-spice-rework-3/src/devices/bsim3/Makefile.am     Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/bsim3/Makefile.am      Tue Dec  7 23:42:52 1999
@@ -27,4 +27,6 @@
 
 
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+INCLUDES = -I$(top_srcdir)/src/include
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/cap/Makefile.am 
ng-spice/src/devices/cap/Makefile.am
--- ng-spice-rework-3/src/devices/cap/Makefile.am       Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/cap/Makefile.am        Tue Dec  7 23:43:04 1999
@@ -29,4 +29,6 @@
 
 
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+INCLUDES = -I$(top_srcdir)/src/include
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/cccs/Makefile.am 
ng-spice/src/devices/cccs/Makefile.am
--- ng-spice-rework-3/src/devices/cccs/Makefile.am      Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/cccs/Makefile.am       Tue Dec  7 23:25:19 1999
@@ -23,3 +23,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/ccvs/Makefile.am 
ng-spice/src/devices/ccvs/Makefile.am
--- ng-spice-rework-3/src/devices/ccvs/Makefile.am      Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/devices/ccvs/Makefile.am       Tue Dec  7 23:43:16 1999
@@ -23,4 +23,6 @@
 
 
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+INCLUDES = -I$(top_srcdir)/src/include
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/csw/Makefile.am 
ng-spice/src/devices/csw/Makefile.am
--- ng-spice-rework-3/src/devices/csw/Makefile.am       Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/csw/Makefile.am        Tue Dec  7 23:25:18 1999
@@ -23,3 +23,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/devsup/Makefile.am 
ng-spice/src/devices/devsup/Makefile.am
--- ng-spice-rework-3/src/devices/devsup/Makefile.am    Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/devsup/Makefile.am     Tue Dec  7 23:25:17 1999
@@ -7,3 +7,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/dio/Makefile.am 
ng-spice/src/devices/dio/Makefile.am
--- ng-spice-rework-3/src/devices/dio/Makefile.am       Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/dio/Makefile.am        Tue Dec  7 23:25:17 1999
@@ -33,3 +33,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/disto/Makefile.am 
ng-spice/src/devices/disto/Makefile.am
--- ng-spice-rework-3/src/devices/disto/Makefile.am     Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/disto/Makefile.am      Tue Dec  7 23:25:16 1999
@@ -20,3 +20,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/ind/Makefile.am 
ng-spice/src/devices/ind/Makefile.am
--- ng-spice-rework-3/src/devices/ind/Makefile.am       Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/ind/Makefile.am        Tue Dec  7 23:25:16 1999
@@ -36,3 +36,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/isrc/Makefile.am 
ng-spice/src/devices/isrc/Makefile.am
--- ng-spice-rework-3/src/devices/isrc/Makefile.am      Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/isrc/Makefile.am       Tue Dec  7 23:25:15 1999
@@ -20,3 +20,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/jfet/Makefile.am 
ng-spice/src/devices/jfet/Makefile.am
--- ng-spice-rework-3/src/devices/jfet/Makefile.am      Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/jfet/Makefile.am       Tue Dec  7 23:25:15 1999
@@ -28,3 +28,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/jfet2/Makefile.am 
ng-spice/src/devices/jfet2/Makefile.am
--- ng-spice-rework-3/src/devices/jfet2/Makefile.am     Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/jfet2/Makefile.am      Tue Dec  7 23:25:14 1999
@@ -29,3 +29,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/ltra/Makefile.am 
ng-spice/src/devices/ltra/Makefile.am
--- ng-spice-rework-3/src/devices/ltra/Makefile.am      Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/ltra/Makefile.am       Tue Dec  7 23:25:13 1999
@@ -25,3 +25,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/mes/Makefile.am 
ng-spice/src/devices/mes/Makefile.am
--- ng-spice-rework-3/src/devices/mes/Makefile.am       Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/mes/Makefile.am        Tue Dec  7 23:25:13 1999
@@ -28,3 +28,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/mos1/Makefile.am 
ng-spice/src/devices/mos1/Makefile.am
--- ng-spice-rework-3/src/devices/mos1/Makefile.am      Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/mos1/Makefile.am       Tue Dec  7 23:25:12 1999
@@ -34,3 +34,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/mos2/Makefile.am 
ng-spice/src/devices/mos2/Makefile.am
--- ng-spice-rework-3/src/devices/mos2/Makefile.am      Mon Nov 15 11:35:09 
1999
+++ ng-spice/src/devices/mos2/Makefile.am       Tue Dec  7 23:25:12 1999
@@ -34,3 +34,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/mos3/Makefile.am 
ng-spice/src/devices/mos3/Makefile.am
--- ng-spice-rework-3/src/devices/mos3/Makefile.am      Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/mos3/Makefile.am       Tue Dec  7 23:25:11 1999
@@ -34,3 +34,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/mos6/Makefile.am 
ng-spice/src/devices/mos6/Makefile.am
--- ng-spice-rework-3/src/devices/mos6/Makefile.am      Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/mos6/Makefile.am       Tue Dec  7 23:25:11 1999
@@ -22,3 +22,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/res/Makefile.am 
ng-spice/src/devices/res/Makefile.am
--- ng-spice-rework-3/src/devices/res/Makefile.am       Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/res/Makefile.am        Tue Dec  7 23:25:10 1999
@@ -27,3 +27,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/sw/Makefile.am 
ng-spice/src/devices/sw/Makefile.am
--- ng-spice-rework-3/src/devices/sw/Makefile.am        Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/sw/Makefile.am Tue Dec  7 23:25:10 1999
@@ -23,3 +23,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/tra/Makefile.am 
ng-spice/src/devices/tra/Makefile.am
--- ng-spice-rework-3/src/devices/tra/Makefile.am       Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/tra/Makefile.am        Tue Dec  7 23:25:09 1999
@@ -22,3 +22,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/urc/Makefile.am 
ng-spice/src/devices/urc/Makefile.am
--- ng-spice-rework-3/src/devices/urc/Makefile.am       Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/urc/Makefile.am        Tue Dec  7 23:25:08 1999
@@ -19,3 +19,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/vccs/Makefile.am 
ng-spice/src/devices/vccs/Makefile.am
--- ng-spice-rework-3/src/devices/vccs/Makefile.am      Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/vccs/Makefile.am       Tue Dec  7 23:25:08 1999
@@ -23,3 +23,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/vcvs/Makefile.am 
ng-spice/src/devices/vcvs/Makefile.am
--- ng-spice-rework-3/src/devices/vcvs/Makefile.am      Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/vcvs/Makefile.am       Tue Dec  7 23:25:07 1999
@@ -24,3 +24,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/devices/vsrc/Makefile.am 
ng-spice/src/devices/vsrc/Makefile.am
--- ng-spice-rework-3/src/devices/vsrc/Makefile.am      Mon Nov 15 11:35:10 
1999
+++ ng-spice/src/devices/vsrc/Makefile.am       Tue Dec  7 23:43:26 1999
@@ -23,4 +23,6 @@
 
 
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+INCLUDES = -I$(top_srcdir)/src/include
+
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/frontend/Makefile.am 
ng-spice/src/frontend/Makefile.am
--- ng-spice-rework-3/src/frontend/Makefile.am  Fri Nov 26 00:03:52 1999
+++ ng-spice/src/frontend/Makefile.am   Tue Dec  7 23:25:06 1999
@@ -124,3 +124,4 @@
 
 INCLUDES = -I$(top_srcdir)/src/include @X_CFLAGS@ 
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/hlp/Makefile.am ng-spice/src/hlp/Makefile.am
--- ng-spice-rework-3/src/hlp/Makefile.am       Mon Nov 15 11:35:10 1999
+++ ng-spice/src/hlp/Makefile.am        Tue Dec  7 23:25:05 1999
@@ -15,3 +15,4 @@
 INCLUDES = -I$(top_srcdir)/src/include @X_CFLAGS@
 
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/include/Makefile.am 
ng-spice/src/include/Makefile.am
--- ng-spice-rework-3/src/include/Makefile.am   Wed Dec  1 00:31:12 1999
+++ ng-spice/src/include/Makefile.am    Tue Dec  7 23:24:58 1999
@@ -56,3 +56,4 @@
        trcvdefs.h      \
        tskdefs.h       
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/maths/Makefile.am 
ng-spice/src/maths/Makefile.am
--- ng-spice-rework-3/src/maths/Makefile.am     Fri Nov 26 00:04:11 1999
+++ ng-spice/src/maths/Makefile.am      Tue Dec  7 23:25:05 1999
@@ -1,3 +1,4 @@
 # Process this file with automake
 
 SUBDIRS = cmaths ni sparse
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/maths/cmaths/Makefile.am 
ng-spice/src/maths/cmaths/Makefile.am
--- ng-spice-rework-3/src/maths/cmaths/Makefile.am      Fri Nov 26 00:14:31 
1999
+++ ng-spice/src/maths/cmaths/Makefile.am       Tue Dec  7 23:25:04 1999
@@ -16,3 +16,4 @@
 
 INCLUDES = -I$(top_srcdir)/src/include
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/maths/ni/Makefile.am 
ng-spice/src/maths/ni/Makefile.am
--- ng-spice-rework-3/src/maths/ni/Makefile.am  Mon Nov 15 11:35:08 1999
+++ ng-spice/src/maths/ni/Makefile.am   Tue Dec  7 23:25:04 1999
@@ -33,3 +33,4 @@
 
 INCLUDES = -I$(top_srcdir)/src/include
 
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/maths/sparse/Makefile.am 
ng-spice/src/maths/sparse/Makefile.am
--- ng-spice-rework-3/src/maths/sparse/Makefile.am      Mon Nov 15 11:35:08 
1999
+++ ng-spice/src/maths/sparse/Makefile.am       Tue Dec  7 23:43:56 1999
@@ -16,5 +16,6 @@
 
 
 
+INCLUDES = -I$(top_srcdir)/src/include
 
-INCLUDES = -I$(top_srcdir)/src/include
\ No newline at end of file
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/misc/Makefile.am ng-spice/src/misc/Makefile.am
--- ng-spice-rework-3/src/misc/Makefile.am      Mon Nov 15 11:35:08 1999
+++ ng-spice/src/misc/Makefile.am       Tue Dec  7 23:25:02 1999
@@ -25,3 +25,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/src/parser/Makefile.am 
ng-spice/src/parser/Makefile.am
--- ng-spice-rework-3/src/parser/Makefile.am    Mon Nov 15 11:35:08 1999
+++ ng-spice/src/parser/Makefile.am     Tue Dec  7 23:25:02 1999
@@ -41,3 +41,4 @@
 
 
 INCLUDES = -I$(top_srcdir)/src/include
+MAINTAINERCLEANFILES = Makefile.in
diff -ruN ng-spice-rework-3/tests/Makefile.am ng-spice/tests/Makefile.am
--- ng-spice-rework-3/tests/Makefile.am Wed Dec  1 00:24:31 1999
+++ ng-spice/tests/Makefile.am  Tue Dec  7 23:49:25 1999
@@ -8,3 +8,5 @@
 EXTRA_DIST =   README          \
                check1.cir      \
                check2.cir
+
+MAINTAINERCLEANFILES = Makefile.in

Partial thread listing: