Makefile 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. thisdir = class/System.Web.Extensions
  2. SUBDIRS = Test
  3. include ../../build/rules.make
  4. LIBRARY = System.Web.Extensions.dll
  5. RESOURCE_FILES= \
  6. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.debug.js \
  7. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.js \
  8. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.debug.js \
  9. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.js \
  10. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.debug.js\
  11. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.js
  12. RESOURCE_FILES_DIST= \
  13. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.debug.js \
  14. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjax.js \
  15. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.debug.js \
  16. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxTimer.js \
  17. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.debug.js\
  18. ../MicrosoftAjaxLibrary/System.Web.Extensions/3.5.0.0/3.5.21022.8/MicrosoftAjaxWebForms.js\
  19. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.debug.js \
  20. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.js \
  21. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxTimer.debug.js \
  22. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxTimer.js \
  23. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxWebForms.debug.js\
  24. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxWebForms.js \
  25. Resources/MicrosoftAjaxExtension.js \
  26. Resources/MicrosoftAjaxWebFormsExtension.js
  27. NUNIT_RESOURCE_FILES= \
  28. Test/resources/Web.mono.config \
  29. $(wildcard Test/resources/*.as?x) \
  30. $(wildcard ../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/*.cs) \
  31. $(wildcard ../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/*.as?x) \
  32. $(wildcard ../System.Web/Test/mainsoft/NunitWeb/NunitWeb/Resources/*.master)
  33. ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
  34. OTHER_LIB_MCS_FLAGS += -r:System.Web.ApplicationServices.dll
  35. endif
  36. LIB_MCS_FLAGS = \
  37. -unsafe \
  38. -define:NET_3_5 \
  39. -define:SYSTEM_WEB_EXTENSIONS \
  40. -r:$(corlib) \
  41. -r:System.dll \
  42. -r:System.Core.dll \
  43. -r:System.Drawing.dll \
  44. -r:System.Data.dll \
  45. -r:System.Data.Linq.dll \
  46. -r:System.Xml.dll \
  47. -r:System.Web.dll \
  48. -r:System.Web.Services.dll \
  49. -r:System.Configuration.dll \
  50. -r:System.EnterpriseServices.dll \
  51. -r:System.ServiceModel.dll \
  52. $(OTHER_LIB_MCS_FLAGS) \
  53. $(RESOURCE_FILES:%=/resource:%)
  54. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -doc:$(test_lib:.dll=.xml) -nowarn:219,169,1591 $(NUNIT_RESOURCE_FILES:%=/resource:%) -r:SystemWebTestShim.dll
  55. EXTRA_DISTFILES = $(RESOURCE_FILES_DIST) $(NUNIT_RESOURCE_FILES)
  56. include ../../build/library.make