Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile.trace « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 789f5a5f5a493bfdbb9ec45c697cc677aa2f6a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Used to build System.Web with trace support
NANT=$(RUNTIME) ../../nant/NAnt.exe
MAKE_GNU=$(MAKE) -f makefile.gnu -C .
PLATFORM=uname | grep CYGWIN 2> /dev/null
all:
	@echo "Building System.Web.dll with Trace enabled."
	($(PLATFORM) && $(NANT) trace) || \
		$(MAKE_GNU) LIB_FLAGS="/d:TRACE /d:WEBTRACE -r corlib -r System -r System.Drawing -r System.Xml"

clean:
	($(PLATFORM) && $(NANT) clean) || $(MAKE_GNU) clean