Makefile 683 B

123456789101112131415161718192021222324
  1. thisdir = class/System.Windows.Forms/SWFTest
  2. SUBDIRS =
  3. include ../../../build/rules.make
  4. all-local:
  5. clean-local:
  6. rm -f *.exe *.pdb
  7. test-local: SWFTest.exe
  8. # Fixme: does the program run itself and exit automatically?
  9. # We want run-test to work without supervision.
  10. run-test-local install-local uninstall-local:
  11. DISTFILES = App.ico AssemblyInfo.cs changelog Form1.cs \
  12. Form1.resx SWFTest.csproj SWFTest.csproj.user
  13. dist-local: dist-default
  14. SWFTest.exe: App.ico AssemblyInfo.cs Form1.cs Form1.resx
  15. $(CSCOMPILE) /r:System.Windows.Forms.dll /r:System.Drawing.dll /resource:App.ico \
  16. /resource:Form1.resx /r:System.Data.dll /target:exe /out:$@ AssemblyInfo.cs Form1.cs