* Makefile ($(TXT_RES)): Pass argument of RESGEN through
authorRaja R Harinath <harinath@hurrynot.org>
Tue, 7 Dec 2004 05:43:16 +0000 (05:43 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Tue, 7 Dec 2004 05:43:16 +0000 (05:43 -0000)
PLATFORM_CHANGE_SEPARATOR_CMD.

svn path=/trunk/mcs/; revision=37294

mcs/class/Microsoft.VisualBasic/ChangeLog
mcs/class/Microsoft.VisualBasic/Makefile

index ebf2f6036341166ab781fe5c883d677decfacb48..1fb521c69b7bb0bef3e9f6c0c956b9b9e1a99163 100644 (file)
@@ -1,3 +1,8 @@
+2004-12-07  Raja R Harinath  <rharinath@novell.com>
+
+       * Makefile ($(TXT_RES)): Pass argument of RESGEN through
+       PLATFORM_CHANGE_SEPARATOR_CMD.
+
 2004-11-26  Raja R Harinath  <rharinath@novell.com>
 
        * Makefile (EXTRA_DISTFILES): Add Microsoft.VisualBasic.dll.resources.
index 4eb2649c015cfd1816ccffbf5c5d52724942d9ab..3efc93b9754c327cf5fcbb007177406ac67d3326 100644 (file)
@@ -9,18 +9,18 @@ TEST_MCS_FLAGS = -codepage:65001
 
 LIB_MCS_FLAGS_RESOURCES = $(LIB_MCS_FLAGS) 
 
-TXT_RESOURCES = Microsoft.VisualBasic/VBUtils.resources
-RESX_RESOURCES = 
+TXT_RES = Microsoft.VisualBasic/VBUtils.resources
+#RESX_RES = 
 
-EXTRA_DISTFILES = $(TXT_RESOURCES:.resources=.txt) $(RESX_RESOURCES:.resources=.resx) Microsoft.VisualBasic.dll.resources
-CLEAN_FILES = $(TXT_RESOURCES) $(RESX_RESOURCES)
+EXTRA_DISTFILES = Microsoft.VisualBasic.dll.resources $(TXT_RES:.resources=.txt) #$(RESX_RES:.resources=.resx)
+CLEAN_FILES = $(TXT_RES) #$(RESX_RES)
 
 include ../../build/library.make
 
-$(the_lib): $(TXT_RESOURCES) $(RESX_RESOURCES)
+$(the_lib): $(TXT_RES) #$(RESX_RES)
 
-$(TXT_RESOURCES): %.resources: %.txt
-       $(RESGEN) $<
+$(TXT_RES): %.resources: %.txt
+       $(RESGEN) `echo $< | $(PLATFORM_CHANGE_SEPARATOR_CMD)`
 
-$(RESX_RESOURCES): %.resources: %.resx
-       $(RESGEN) $<
+#$(RESX_RES): %.resources: %.resx
+#      $(RESGEN) `echo $< | $(PLATFORM_CHANGE_SEPARATOR_CMD)`