Skip to content

Commit

Permalink
* Makefile ($(TXT_RES)): Pass argument of RESGEN through
Browse files Browse the repository at this point in the history
PLATFORM_CHANGE_SEPARATOR_CMD.

svn path=/trunk/mcs/; revision=37294
  • Loading branch information
harinath committed Dec 7, 2004
1 parent 3a17c92 commit 7d603ac
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions mcs/class/Microsoft.VisualBasic/ChangeLog
@@ -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.
Expand Down
18 changes: 9 additions & 9 deletions mcs/class/Microsoft.VisualBasic/Makefile
Expand Up @@ -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)`

0 comments on commit 7d603ac

Please sign in to comment.