Merge pull request #5352 from urisimchoni/fix-logprof-manpage
[mono.git] / mcs / class / System.Web / Test / standalone / PageParserDefaultTypeProperties / Makefile
1 thisdir = class/System.Web/Test/standalone/PageParserDefaultTypeProperties
2 include ../../../../../build/rules.make
3
4 APPLICATION_ASSEMBLY = bin/test.dll
5
6 APPLICATION_ASSEMBLY_SOURCES = \
7         default.aspx.cs \
8         default.aspx.designer.cs \
9         Properties/AssemblyInfo.cs \
10         PreStartMethods.cs
11
12 APPLICATION_ASSEMBLY_MCS_FLAGS = \
13         -debug:full \
14         -r:System.Web.dll
15
16 VALID_PROFILE := $(filter 4.5, $(FRAMEWORK_VERSION))
17
18 ifndef VALID_PROFILE
19 all:
20 else
21 all: $(EXTERNAL_ASSEMBLY) $(APPLICATION_ASSEMBLY)
22
23 $(APPLICATION_ASSEMBLY): bin/.stamp $(APPLICATION_ASSEMBLY_SOURCES)
24         $(CSCOMPILE) $(APPLICATION_ASSEMBLY_MCS_FLAGS) $(APPLICATION_ASSEMBLY_SOURCES) -target:library -out:$(APPLICATION_ASSEMBLY)
25
26 bin/.stamp:
27         install -d -m 755 bin/
28         touch bin/.stamp
29 endif
30
31 clean:
32         rm -rf bin/