Makefile 295 B

1234567891011121314151617
  1. .SUFFIXES: .cs .exe
  2. RUNTIME = mono
  3. CSCOMPILE = mcs
  4. MONO="mono"
  5. test: TypeDescriptorTest.exe
  6. run-test: test
  7. $(MONO) TypeDescriptorTest.exe
  8. clean:
  9. rm -f TypeDescriptorTest.exe
  10. TypeDescriptorTest.exe: TypeDescriptorTest.cs
  11. $(CSCOMPILE) TypeDescriptorTest.cs -r:System.Web