Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 1 | # Mesa 3-D graphics library |
| 2 | # Version: 4.0 |
| 3 | # |
| 4 | # Copyright (C) 1999 Brian Paul All Rights Reserved. |
| 5 | # |
| 6 | # Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | # copy of this software and associated documentation files (the "Software"), |
| 8 | # to deal in the Software without restriction, including without limitation |
| 9 | # the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | # and/or sell copies of the Software, and to permit persons to whom the |
| 11 | # Software is furnished to do so, subject to the following conditions: |
| 12 | # |
| 13 | # The above copyright notice and this permission notice shall be included |
| 14 | # in all copies or substantial portions of the Software. |
| 15 | # |
| 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 17 | # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | # BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
| 20 | # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 21 | # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 22 | |
Daniel Borca | 3f12058 | 2004-12-15 08:00:43 +0000 | [diff] [blame] | 23 | # MinGW makefile v1.2 for Mesa |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 24 | # |
Daniel Borca | 3f12058 | 2004-12-15 08:00:43 +0000 | [diff] [blame] | 25 | # Copyright (C) 2002 - Daniel Borca |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 26 | # Email : dborca@users.sourceforge.net |
| 27 | # Web : http://www.geocities.com/dborca |
| 28 | |
| 29 | |
| 30 | # |
| 31 | # Available options: |
| 32 | # |
| 33 | # Environment variables: |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 34 | # GLIDE path to Glide3 SDK; used with FX. |
| 35 | # default = $(TOP)/glide3 |
| 36 | # FX=1 build for 3dfx Glide3. Note that this disables |
| 37 | # compilation of most WMesa code and requires fxMesa. |
| 38 | # As a consequence, you'll need the Win32 Glide3 |
| 39 | # library to build any application. |
| 40 | # default = no |
Brian Paul | 86e001b | 2004-08-25 14:59:45 +0000 | [diff] [blame] | 41 | # ICD=1 build the installable client driver interface |
| 42 | # (windows opengl driver interface) |
| 43 | # default = no |
Daniel Borca | edf4f53 | 2004-04-14 08:00:52 +0000 | [diff] [blame] | 44 | # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow). |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 45 | # default = no |
| 46 | # |
| 47 | # Targets: |
| 48 | # all: build everything |
| 49 | # libgl: build GL |
| 50 | # clean: remove object files |
| 51 | # realclean: remove all generated files |
| 52 | # |
| 53 | |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 54 | # MinGW core makefile updated for Mesa 7.0 |
| 55 | # |
Zhang | 76fb808 | 2007-07-21 11:28:06 -0600 | [diff] [blame] | 56 | # Updated : by Heromyth, on 2007-7-21 |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 57 | # Email : zxpmyth@yahoo.com.cn |
Zhang | 76fb808 | 2007-07-21 11:28:06 -0600 | [diff] [blame] | 58 | # Bugs : 1) All the default settings work fine. But the setting X86=1 can't work. |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 59 | # The others havn't been tested yet. |
Zhang | 76fb808 | 2007-07-21 11:28:06 -0600 | [diff] [blame] | 60 | # 2) The generated DLLs are *not* compatible with the ones built |
| 61 | # with the other compilers like VC8, especially for GLUT. |
| 62 | # 3) MAlthough more tests are needed, it can be used individually! |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 63 | |
| 64 | |
| 65 | .PHONY : all libgl clean realclean |
| 66 | |
Daniel Borca | eec588b | 2004-08-30 08:34:52 +0000 | [diff] [blame] | 67 | ifeq ($(ICD),1) |
| 68 | # when -std=c99 mingw will not define WIN32 |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 69 | CFLAGS = -Wall -Werror |
Daniel Borca | eec588b | 2004-08-30 08:34:52 +0000 | [diff] [blame] | 70 | else |
| 71 | # I love c89 |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 72 | CFLAGS = -Wall -pedantic |
Daniel Borca | eec588b | 2004-08-30 08:34:52 +0000 | [diff] [blame] | 73 | endif |
Daniel Borca | 731f1b1 | 2005-05-23 22:02:53 +0000 | [diff] [blame] | 74 | CFLAGS += -O2 -ffast-math |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 75 | |
| 76 | export CFLAGS |
| 77 | |
Zhang | 76fb808 | 2007-07-21 11:28:06 -0600 | [diff] [blame] | 78 | |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 79 | ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),) |
| 80 | UNLINK = del $(subst /,\,$(1)) |
| 81 | else |
| 82 | UNLINK = $(RM) $(1) |
| 83 | endif |
| 84 | |
Zhang | 76fb808 | 2007-07-21 11:28:06 -0600 | [diff] [blame] | 85 | all: libgl libglu libglut example |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 86 | |
| 87 | libgl: lib |
| 88 | $(MAKE) -f Makefile.mgw -C src/mesa |
| 89 | |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 90 | libglu: libgl |
| 91 | $(MAKE) -f Makefile.mgw -C src/glu/sgi |
| 92 | |
| 93 | libglut: libglu |
| 94 | $(MAKE) -f Makefile.mgw -C src/glut/glx |
| 95 | |
| 96 | example: libglut |
| 97 | $(MAKE) -f Makefile.mgw star -C progs/samples |
| 98 | copy progs\samples\star.exe lib |
| 99 | |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 100 | lib: |
| 101 | mkdir lib |
| 102 | |
| 103 | clean: |
| 104 | $(MAKE) -f Makefile.mgw clean -C src/mesa |
zhang | 37aca21 | 2007-06-28 08:12:52 -0600 | [diff] [blame] | 105 | $(MAKE) -f Makefile.mgw clean -C src/glu/sgi |
| 106 | $(MAKE) -f Makefile.mgw clean -C src/glut/glx |
Brian Paul | 304d11e | 2003-08-05 15:54:08 +0000 | [diff] [blame] | 107 | |
| 108 | realclean: clean |
| 109 | -$(call UNLINK,lib/*.a) |
| 110 | -$(call UNLINK,lib/*.dll) |