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) ;) 


Index: ChangeLog
===================================================================
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 <[EMAIL PROTECTED]>
+
+	* makefile.gnu: Add corlib target to just build that.
+
 2003-01-14  Duncan Mak  <[EMAIL PROTECTED]>
 
        * ilasm/parser/ScannerAdapter.cs: Remove the cleanup method now that
Index: makefile.gnu
===================================================================
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
 
+corlib:
+	(cd class/corlib; $(MAKE) -f makefile.gnu)
+
 # Please do only use `binary-snapshot', the `dist' target will disappear really soon !
 binary-snapshot: dist
 

Reply via email to