Makefile 643 B

12345678910111213141516171819202122232425
  1. thisdir = class/Microsoft.VisualBasic
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = Microsoft.VisualBasic.dll
  5. LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll @Microsoft.VisualBasic.dll.resources
  6. LIB_MCS_FLAGS_RESOURCES = $(LIB_MCS_FLAGS)
  7. TXT_RESOURCES = Microsoft.VisualBasic/VBUtils.resources
  8. RESX_RESOURCES =
  9. EXTRA_DISTSFILES = $(TXT_RESOURCES:.resources=.txt) $(RESX_RESOURCES:.resources=.resx)
  10. CLEAN_FILES = $(TXT_RESOURCES) $(RESX_RESOURCES)
  11. include ../../build/library.make
  12. $(the_lib): $(TXT_RESOURCES) $(RESX_RESOURCES)
  13. $(TXT_RESOURCES): %.resources: %.txt
  14. $(RESGEN) $<
  15. $(RESX_RESOURCES): %.resources: %.resx
  16. $(RESGEN) $<