diff options
author | Brian <[email protected]> | 2007-07-21 11:27:22 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-21 11:27:22 -0600 |
commit | 005eea249c2565cd33bb7c5f599040ead1ef99a5 (patch) | |
tree | 2f3124d5d6070be0c2ed6368d58681d9ca5269f4 /Makefile.mgw | |
parent | 9747de8ec68aa364a2009ea2bfbaeb48d73a758f (diff) |
Fix a number of MINGW32 issues (Zhang <[email protected]>)mesa_7_0_1_rc1
Diffstat (limited to 'Makefile.mgw')
-rw-r--r-- | Makefile.mgw | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.mgw b/Makefile.mgw index 948860890c0..3dc9f626438 100644 --- a/Makefile.mgw +++ b/Makefile.mgw @@ -53,11 +53,13 @@ # MinGW core makefile updated for Mesa 7.0 # -# updated : by Heromyth, 2007-6-25 +# Updated : by Heromyth, on 2007-7-21 # Email : [email protected] -# Bug : All the default settings work fine. But the setting X86=1 can't work. +# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work. # The others havn't been tested yet. - +# 2) The generated DLLs are *not* compatible with the ones built +# with the other compilers like VC8, especially for GLUT. +# 3) MAlthough more tests are needed, it can be used individually! .PHONY : all libgl clean realclean @@ -73,13 +75,14 @@ CFLAGS += -O2 -ffast-math export CFLAGS + ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),) UNLINK = del $(subst /,\,$(1)) else UNLINK = $(RM) $(1) endif -all: libgl libglu libglut +all: libgl libglu libglut example libgl: lib $(MAKE) -f Makefile.mgw -C src/mesa |