Imported Upstream version 3.6.0

Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
This commit is contained in:
Jo Shields
2014-08-13 10:39:27 +01:00
commit a575963da9
50588 changed files with 8155799 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
all: Program1.exe
run-test: Program1.exe
mono Program1.exe
dist-clean: clean
rm -rf bin My.master PageWithMaster.aspx
clean:
rm -f Program1.exe Class1.dll
Program1.exe: Program1.cs Class1.dll
gmcs -out:$@ -r:System.Web -r:Class1 Program1.cs
Class1.dll: Class1.cs
gmcs -out:$@ -r:System.Web Class1.cs -target:library