makefile.trace 418 B

123456789101112
  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
  5. all:
  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"
  9. clean:
  10. ($(PLATFORM) && $(NANT) clean) || $(MAKE_GNU) clean