Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

17 lines
326 B
Makefile

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