[Gtk-sharp-list] [Patch] sample/Makefile.in & sample/rsvg/Makefile.in

Charles Iliya Krempeaux charles@reptile.ca
14 Mar 2003 13:25:52 -0800


--=-kYYIZEL5NfkBcw1BBpCv
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Hello,

Can I commit this?

This Patch fixes a problem with the "sample/rsvg/Makefile.in" directory.
When you typed:

    make distclean

It did NOT get rid of "sample/rsvg/Makefile".  This Patch fixes this.


See ya

-- 
     Charles Iliya Krempeaux, BSc
     charles@reptile.ca

________________________________________________________________________
 Reptile Consulting & Services    604-REPTILE    http://www.reptile.ca/

--=-kYYIZEL5NfkBcw1BBpCv
Content-Disposition: attachment; filename=gtk-sharp-DistClean.diff
Content-Transfer-Encoding: quoted-printable
Content-Type: text/x-patch; name=gtk-sharp-DistClean.diff; charset=ISO-8859-1

Index: ChangeLog
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/gtk-sharp/ChangeLog,v
retrieving revision 1.354
diff -u -r1.354 ChangeLog
--- ChangeLog	14 Mar 2003 11:45:18 -0000	1.354
+++ ChangeLog	14 Mar 2003 21:23:35 -0000
@@ -1,3 +1,12 @@
+2003-03-14  Charles Iliya Krempeaux  <charles@reptile.ca>
+
+	* sample/Makefile.in : Modified it to make it so "make clean"
+	  will clean the "sample/rsvg" directory too.  And made it so
+	  a "make distclean" will do a distclean to the "sample/rsvg"
+	  too.
+	* sample/rsvg/Makefile.in : Added the "distclean" rule to
+	  it.
+
 2003-03-14  Rodrigo Moya <rodrigo@ximian.com>
=20
 	* configure.in:
Index: sample/Makefile.in
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/gtk-sharp/sample/Makefile.in,v
retrieving revision 1.23
diff -u -r1.23 Makefile.in
--- sample/Makefile.in	14 Mar 2003 07:31:51 -0000	1.23
+++ sample/Makefile.in	14 Mar 2003 21:23:37 -0000
@@ -61,8 +61,11 @@
 clean:
 	rm -f *.exe
 @ENABLE_GNOME_TRUE@	$(MAKE) -C gconf clean=20
+@ENABLE_GNOME_TRUE@	$(MAKE) -C rsvg clean=20
=20
 distclean: clean
+@ENABLE_RSVG_TRUE@	$(MAKE) -C rsvg distclean
+
=20
 unix:
 	@echo "'make unix' is broken for now."
Index: sample/rsvg/Makefile.in
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/gtk-sharp/sample/rsvg/Makefile.in,v
retrieving revision 1.1
diff -u -r1.1 Makefile.in
--- sample/rsvg/Makefile.in	14 Mar 2003 07:31:51 -0000	1.1
+++ sample/rsvg/Makefile.in	14 Mar 2003 21:23:37 -0000
@@ -8,3 +8,6 @@
=20
 clean:
 	rm -f *.exe
+
+distclean: clean
+@ENABLE_RSVG_TRUE@	rm -f Makefile

--=-kYYIZEL5NfkBcw1BBpCv--