Makefile 710 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. thisdir = class/System.Web/Test/TestMonoWeb
  2. SUBDIRS =
  3. include ../../../../build/rules.make
  4. LOCAL_MCS_FLAGS = /nowarn:0168 /nowarn:0162 /unsafe \
  5. /noconfig /r:System.dll /r:System.Web.dll \
  6. /r:System.Drawing.dll /r:System.Xml.dll
  7. all-local install-local uninstall-local:
  8. # it doesn't compile for me.
  9. # test-local: TestMonoWeb.exe
  10. test-local:
  11. # ??? What do we run here?
  12. run-test-local run-test-ondotnet-local:
  13. clean-local:
  14. rm -f *.exe
  15. sources = \
  16. AsyncHandler.cs \
  17. AsyncModule.cs \
  18. AsyncOperation.cs \
  19. SyncHandler.cs \
  20. SyncModule.cs \
  21. Test1.cs
  22. DISTFILES = $(sources) README
  23. dist-local: dist-default
  24. # The thingie
  25. TestMonoWeb.exe: $(sources)
  26. $(CSCOMPILE) /target:exe /out:$@ $(sources)