| 1234567891011121314151617 |
- .SUFFIXES: .cs .exe
- RUNTIME = mono
- CSCOMPILE = mcs
- MONO="mono"
- test: TypeDescriptorTest.exe
- run-test: test
- $(MONO) TypeDescriptorTest.exe
- clean:
- rm -f TypeDescriptorTest.exe
- TypeDescriptorTest.exe: TypeDescriptorTest.cs
- $(CSCOMPILE) TypeDescriptorTest.cs -r:System.Web
|