Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2004-12-07 08:59:17 +0300
committerRaja R Harinath <harinath@hurrynot.org>2004-12-07 08:59:17 +0300
commitaaa04e2f90fea8a8f2bb109879b534d599645618 (patch)
tree225f586a886f57d310c10e299dbbafa9e440a17f /mcs/nunit20/util/Makefile
parentdf484a8bcd3398f9f9df7d502e127478ee0fcc38 (diff)
In nunit20/util:
* Makefile ($(RESX_RES)): Pass argument of RESGEN through PLATFORM_CHANGE_SEPARATOR_CMD. In class/Npgsql: * Makefile (CLEAN_FILES): Add $(RESX_RES). ($(the_lib)): Depend on $(OTHER_RES) too. ($(RESX_RES)): Pass argument of RESGEN through PLATFORM_CHANGE_SEPARATOR_CMD. svn path=/trunk/mcs/; revision=37296
Diffstat (limited to 'mcs/nunit20/util/Makefile')
-rw-r--r--mcs/nunit20/util/Makefile14
1 files changed, 8 insertions, 6 deletions
diff --git a/mcs/nunit20/util/Makefile b/mcs/nunit20/util/Makefile
index 1f7e6fe486b..3d797c6cd69 100644
--- a/mcs/nunit20/util/Makefile
+++ b/mcs/nunit20/util/Makefile
@@ -2,8 +2,6 @@ thisdir = nunit20/util
SUBDIRS =
include ../../build/rules.make
-CLEAN_FILES = Transform.resources
-
LIBRARY = NUnit.Util.dll
LIBRARY_NAME = nunit.util.dll
LIBRARY_SNK = $(topdir)/nunit.key
@@ -18,13 +16,17 @@ ifeq (net_2_0, $(PROFILE))
NO_INSTALL = yes
endif
+RESX_RES = Transform.resources
+
EXTRA_DISTFILES = \
nunit.util.dll.csproj \
- Transform.resx
+ $(RESX_RES:.resources=.resx)
-%.resources: %.resx
- $(RESGEN) $<
+CLEAN_FILES = $(RESX_RES)
include ../../build/library.make
-$(the_lib): Transform.resources
+$(the_lib): $(RESX_RES)
+
+$(RESX_RES): %.resources: %.resx
+ $(RESGEN) `echo $< | $(PLATFORM_CHANGE_SEPARATOR_CMD)`