1 # Used to build System.Web with trace support
2 NANT=$(RUNTIME) ../../nant/NAnt.exe
3 MAKE_GNU=$(MAKE) -f makefile.gnu -C .
4 PLATFORM=uname | grep CYGWIN 2> /dev/null
6 @echo "Building System.Web.dll with Trace enabled."
7 ($(PLATFORM) && $(NANT) trace) || \
8 $(MAKE_GNU) LIB_FLAGS="/d:TRACE /d:WEBTRACE -r corlib -r System -r System.Drawing -r System.Xml"
11 ($(PLATFORM) && $(NANT) clean) || $(MAKE_GNU) clean