Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. # MinGW makefile v1.2 for Mesa
  23. #
  24. # Copyright (C) 2002 - Daniel Borca
  25. # Email : dborca@users.sourceforge.net
  26. # Web : http://www.geocities.com/dborca
  27. #
  28. # Available options:
  29. #
  30. # Environment variables:
  31. # GLIDE path to Glide3 SDK; used with FX.
  32. # default = $(TOP)/glide3
  33. # FX=1 build for 3dfx Glide3. Note that this disables
  34. # compilation of most WMesa code and requires fxMesa.
  35. # As a consequence, you'll need the Win32 Glide3
  36. # library to build any application.
  37. # default = no
  38. # ICD=1 build the installable client driver interface
  39. # (windows opengl driver interface)
  40. # default = no
  41. # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
  42. # default = no
  43. #
  44. # Targets:
  45. # all: build everything
  46. # libgl: build GL
  47. # clean: remove object files
  48. # realclean: remove all generated files
  49. #
  50. # MinGW core makefile updated for Mesa 7.0
  51. #
  52. # Updated : by Heromyth, on 2007-7-21
  53. # Email : zxpmyth@yahoo.com.cn
  54. # Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
  55. # The others havn't been tested yet.
  56. # 2) The generated DLLs are *not* compatible with the ones built
  57. # with the other compilers like VC8, especially for GLUT.
  58. # 3) MAlthough more tests are needed, it can be used individually!
  59. .PHONY : all libgl clean realclean
  60. ifeq ($(ICD),1)
  61. # when -std=c99 mingw will not define WIN32
  62. CFLAGS = -Wall -Werror
  63. else
  64. # I love c89
  65. CFLAGS = -Wall -pedantic
  66. endif
  67. CFLAGS += -O2 -ffast-math
  68. export CFLAGS
  69. ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
  70. UNLINK = del $(subst /,\,$(1))
  71. else
  72. UNLINK = $(RM) $(1)
  73. endif
  74. all: libgl libglu libglut example
  75. libgl: lib
  76. $(MAKE) -f Makefile.mgw -C src/mesa
  77. libglu: libgl
  78. $(MAKE) -f Makefile.mgw -C src/glu/sgi
  79. libglut: libglu
  80. $(MAKE) -f Makefile.mgw -C src/glut/glx
  81. example: libglut
  82. $(MAKE) -f Makefile.mgw star -C progs/samples
  83. copy progs\samples\star.exe lib
  84. lib:
  85. mkdir lib
  86. clean:
  87. $(MAKE) -f Makefile.mgw clean -C src/mesa
  88. $(MAKE) -f Makefile.mgw clean -C src/glu/sgi
  89. $(MAKE) -f Makefile.mgw clean -C src/glut/glx
  90. realclean: clean
  91. -$(call UNLINK,lib/*.a)
  92. -$(call UNLINK,lib/*.dll)