From 5567cf1befbda64f2dc6fae1d337567cd984b46e Mon Sep 17 00:00:00 2001 From: marha Date: Sat, 21 Dec 2013 15:01:56 +0100 Subject: Use forward slashes to solve problem when using cygwin python --- mesalib/windows/VC8/mesa/makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mesalib/windows/VC8/mesa/makefile') diff --git a/mesalib/windows/VC8/mesa/makefile b/mesalib/windows/VC8/mesa/makefile index c5896231d..63f4b101b 100644 --- a/mesalib/windows/VC8/mesa/makefile +++ b/mesalib/windows/VC8/mesa/makefile @@ -71,13 +71,13 @@ all: $(TARGETDIR)\Release\swrast_dri.dll $(TARGETDIR)\Debug\swrast_dri.dll ..\..\..\src\mesa\main\api_exec.c: $(wildcard ..\..\..\src\mapi\glapi\gen\*.xml) ..\..\..\src\mapi\glapi\gen\gl_genexec.py cd ..\..\..\src\mapi\glapi\gen & python gl_genexec.py -f gl_and_es_API.xml > ..\..\..\mesa\main\api_exec.c -GET_HASH_GEN = ..\..\..\src\mesa\main\get_hash_generator.py +GET_HASH_GEN = ../../../src/mesa/main/get_hash_generator.py ..\..\..\src\mesa\main\get_hash.h: ..\..\..\src\mapi\glapi\gen\gl_and_es_API.xml ..\..\..\src\mesa\main\get_hash_params.py $(GET_HASH_GEN) - python $(GET_HASH_GEN) -f $< > $@ + python $(GET_HASH_GEN) -f $(subst $/,/,$<) > $@ -REMAP_HELPER = ..\..\..\src\mapi\glapi\gen\remap_helper.py +REMAP_HELPER = ../../../src/mapi/glapi/gen/remap_helper.py ..\..\..\src\mesa\main\remap_helper.h: ..\..\..\src\mapi\glapi\gen\gl_and_es_API.xml $(REMAP_HELPER) - python $(REMAP_HELPER) -f $< > $@ + python $(REMAP_HELPER) -f $(subst $/,/,$<) > $@ $(TARGETDIR)\Debug\swrast_dri.dll: $(DEPS) $(DBGBUILDCMD) -- cgit v1.2.3