a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
thisdir = class/System.Web/Test/standalone/ApplicationPreStartMethods/test_07
|
|
include ../../../../../../build/rules.make
|
|
|
|
APPLICATION_ASSEMBLY = ApplicationPreStartMethods/bin/ApplicationPreStartMethods_test_07.dll
|
|
|
|
APPLICATION_ASSEMBLY_SOURCES = \
|
|
ApplicationPreStartMethods/default.aspx.cs \
|
|
ApplicationPreStartMethods/default.aspx.designer.cs \
|
|
ApplicationPreStartMethods/Properties/AssemblyInfo.cs \
|
|
ApplicationPreStartMethods/Tests/PreStartMethods.cs
|
|
|
|
APPLICATION_ASSEMBLY_MCS_FLAGS = \
|
|
-debug:full \
|
|
-r:System.Web.dll
|
|
|
|
VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
|
|
|
|
ifndef VALID_PROFILE
|
|
all:
|
|
else
|
|
all: $(APPLICATION_ASSEMBLY)
|
|
|
|
$(APPLICATION_ASSEMBLY): ApplicationPreStartMethods/bin/.stamp $(APPLICATION_ASSEMBLY_SOURCES)
|
|
$(CSCOMPILE) $(APPLICATION_ASSEMBLY_MCS_FLAGS) $(APPLICATION_ASSEMBLY_SOURCES) -target:library -out:$(APPLICATION_ASSEMBLY)
|
|
|
|
ApplicationPreStartMethods/bin/.stamp:
|
|
install -d -m 755 ApplicationPreStartMethods/bin/
|
|
touch ApplicationPreStartMethods/bin/.stamp
|
|
endif
|
|
|
|
clean:
|
|
rm -rf ApplicationPreStartMethods/bin/
|