Makefile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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/1.0.61025.0/MicrosoftAjax.debug.js \
  7. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjax.js \
  8. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxTimer.debug.js \
  9. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxTimer.js \
  10. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxWebForms.debug.js\
  11. ../MicrosoftAjaxLibrary/System.Web.Extensions/1.0.61025.0/MicrosoftAjaxWebForms.js
  12. LIB_MCS_FLAGS = \
  13. -unsafe \
  14. -define:SYSTEM_WEB_EXTENSIONS \
  15. -r:$(corlib) \
  16. -r:System.dll \
  17. -r:System.Drawing.dll \
  18. -r:System.Data.dll \
  19. -r:System.Xml.dll \
  20. -r:System.Web.dll \
  21. -r:System.Web.Services.dll \
  22. -r:System.Configuration.dll \
  23. -r:System.EnterpriseServices.dll \
  24. $(OTHER_LIB_MCS_FLAGS) \
  25. $(RESOURCE_FILES:%=/resource:%)
  26. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -doc:$(test_lib:.dll=.xml) -nowarn:219 -nowarn:169 $(NUNIT_RESOURCE_FILES:%=/resource:%)
  27. EXTRA_DISTFILES = $(RESOURCE_FILES)
  28. include ../../build/library.make