diff options
author | marha <marha@users.sourceforge.net> | 2012-10-31 09:39:45 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-10-31 09:39:45 +0100 |
commit | 7c531937cfab42f2fd3233c096c409ebdd5b59af (patch) | |
tree | c8b57699045873636e36c6c89c1e4bc9462833a8 /xorg-server/makefile | |
parent | 5b22d4d5511efbd4fb0658c370edadd39829e39b (diff) | |
download | vcxsrv-7c531937cfab42f2fd3233c096c409ebdd5b59af.tar.gz vcxsrv-7c531937cfab42f2fd3233c096c409ebdd5b59af.tar.bz2 vcxsrv-7c531937cfab42f2fd3233c096c409ebdd5b59af.zip |
Solved problem of mesa dll not being build anymore.
File name checking is case sensitive in mhmake
Diffstat (limited to 'xorg-server/makefile')
-rw-r--r-- | xorg-server/makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xorg-server/makefile b/xorg-server/makefile index 6b8ec305f..d5f9c5b6f 100644 --- a/xorg-server/makefile +++ b/xorg-server/makefile @@ -98,9 +98,12 @@ EXTRASTOBUILDDIRS=$(dir $(EXTRASTOBUILD)) load_makefile $(EXTRASTOBUILDDIRS:%$(NOSERVOBJDIR)\=%makefile MAKESERVER=0 DEBUG=$(DEBUG);) all: $(EXTRASTOBUILD) -BASEOBJDIR=$(NOSERVOBJDIR:obj\%=%) load_makefile ..\mesalib\windows\VC8\mesa\makefile MAKESERVER=0 DEBUG=$(DEBUG) -all: ..\mesalib\windows\VC8\mesa\$(BASEOBJDIR)\swrast_dri.dll +ifeq ($(DEBUG),1) +all: ..\mesalib\windows\VC8\mesa\Debug\swrast_dri.dll +else +all: ..\mesalib\windows\VC8\mesa\Release\swrast_dri.dll +endif all: fonts.src\all xkeyboard-config\all |