Merge branch 'cecil-light'
[mono.git] / mcs / class / System.Web / Test / standalone / EnableFormsAuthentication / Test_08 / Makefile
1 TESTNUM=08
2 thisdir = class/System.Web/Test/standalone/EnableFormsAuthentication/Test_$(TESTNUM)
3 include ../../../../../../build/rules.make
4
5 APPLICATION_ASSEMBLY = bin/EnableFormsAuthentication_Test_$(TESTNUM).dll
6
7 APPLICATION_ASSEMBLY_SOURCES = \
8         Properties/AssemblyInfo.cs \
9         Tests/PreStart.cs
10
11 APPLICATION_ASSEMBLY_MCS_FLAGS = \
12         -debug:full \
13         -r:System.Web.dll
14
15 VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
16
17 ifndef VALID_PROFILE
18 all:
19 else
20 all: $(APPLICATION_ASSEMBLY)
21
22 $(APPLICATION_ASSEMBLY): bin/.stamp $(APPLICATION_ASSEMBLY_SOURCES)
23         $(CSCOMPILE) $(APPLICATION_ASSEMBLY_MCS_FLAGS) $(APPLICATION_ASSEMBLY_SOURCES) -target:library -out:$(APPLICATION_ASSEMBLY)
24
25 bin/.stamp:
26         install -d -m 755 bin/
27         touch bin/.stamp
28 endif
29
30 clean:
31         rm -rf bin/