[Mono-list] corlib target for makefile.gnu

Nick Drochak ndrochak@gol.com
16 Jan 2003 14:47:59 +0900


--=-FGurY7+Fx29LffsBZJvH
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

I added a corlib target to my makefile.gnu.  It saves a bunch of time if
that's all you need to build.  I tend to build that a lot since I am
running the unit tests a lot. 

OK to commit? 

Nick D. 

P.S. Juli, I used $(MAKE) ;) 



--=-FGurY7+Fx29LffsBZJvH
Content-Description: 
Content-Disposition: attachment; filename=make.diff
Content-Transfer-Encoding: quoted-printable
Content-Type: text/x-patch; charset=ANSI_X3.4-1968

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/mcs/ChangeLog,v
retrieving revision 1.42
diff -u -r1.42 ChangeLog
--- ChangeLog	15 Jan 2003 04:09:13 -0000	1.42
+++ ChangeLog	16 Jan 2003 05:40:09 -0000
@@ -1,3 +1,7 @@
+2003-01-16  Nick Drochak <ndrochak@gol.com>
+
+	* makefile.gnu: Add corlib target to just build that.
+
 2003-01-14  Duncan Mak  <duncan@ximian.com>
=20
        * ilasm/parser/ScannerAdapter.cs: Remove the cleanup method now tha=
t
Index: makefile.gnu
=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/mcs/makefile.gnu,v
retrieving revision 1.19
diff -u -r1.19 makefile.gnu
--- makefile.gnu	10 Jan 2003 09:44:59 -0000	1.19
+++ makefile.gnu	16 Jan 2003 05:40:09 -0000
@@ -42,6 +42,9 @@
 		$(MAKE) -C $$i -f makefile.gnu $@ || exit 1; \
 	done
=20
+corlib:
+	(cd class/corlib; $(MAKE) -f makefile.gnu)
+
 # Please do only use `binary-snapshot', the `dist' target will disappear r=
eally soon !
 binary-snapshot: dist
=20

--=-FGurY7+Fx29LffsBZJvH--