From a420e6f9a2fd9faf391fe2ef1d588e172ec74736 Mon Sep 17 00:00:00 2001 From: Matthew Clarke Date: Sat, 28 Oct 2000 00:29:34 +0000 Subject: [PATCH] Don't assume we are building in the source tree, but allow make to locate resources/display.rc and resources/mouse.rc via VPATH. --- dlls/user/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/user/Makefile.in b/dlls/user/Makefile.in index d1df4f960ac..9039cdf0ddb 100644 --- a/dlls/user/Makefile.in +++ b/dlls/user/Makefile.in @@ -48,9 +48,9 @@ $(EXTRA_OBJS): $(TOOLSUBDIRS) dummy # Special rules for 16-bit resource files resources/display.res: resources/display.rc - LD_LIBRARY_PATH="$(TOPOBJDIR):$$LD_LIBRARY_PATH" $(WRC) $(DIVINCL) -o $@ -w16 -m -r resources/display.rc + LD_LIBRARY_PATH="$(TOPOBJDIR):$$LD_LIBRARY_PATH" $(WRC) $(DIVINCL) -o $@ -w16 -m -r $(SRCDIR)/resources/display.rc resources/mouse.res: resources/mouse.rc - LD_LIBRARY_PATH="$(TOPOBJDIR):$$LD_LIBRARY_PATH" $(WRC) $(DIVINCL) -o $@ -w16 -m -r resources/mouse.rc + LD_LIBRARY_PATH="$(TOPOBJDIR):$$LD_LIBRARY_PATH" $(WRC) $(DIVINCL) -o $@ -w16 -m -r $(SRCDIR)/resources/mouse.rc ### Dependencies: