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.

Makefile.mgw 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.0 for Mesa
  23. #
  24. # Copyright (C) 2002 - Borca Daniel
  25. # Email : dborca@users.sourceforge.net
  26. # Web : http://www.geocities.com/dborca
  27. #
  28. # Available options:
  29. #
  30. # Environment variables:
  31. # CPU optimize for the given processor.
  32. # default = pentium
  33. # GLIDE path to Glide3 SDK; used with FX.
  34. # default = $(TOP)/glide3
  35. # FX=1 build for 3dfx Glide3. Note that this disables
  36. # compilation of most WMesa code and requires fxMesa.
  37. # As a consequence, you'll need the Win32 Glide3
  38. # library to build any application.
  39. # default = no
  40. # HAVE_X86=1 optimize for i386.
  41. # default = no
  42. # HAVE_MMX=1 allow MMX specializations, provided your assembler
  43. # supports MMX instruction set. However, the true CPU
  44. # capabilities are checked at run-time to avoid crashes.
  45. # default = no
  46. # HAVE_SSE=1 (see HAVE_MMX)
  47. # default = no
  48. # HAVE_3DNOW=1 (see HAVE_MMX)
  49. # default = no
  50. #
  51. # Targets:
  52. # all: build everything
  53. # libgl: build GL
  54. # clean: remove object files
  55. # realclean: remove all generated files
  56. #
  57. .PHONY : all libgl clean realclean
  58. CPU ?= pentium
  59. CFLAGS = -Wall -W -pedantic
  60. CFLAGS += -O2 -ffast-math -mcpu=$(CPU)
  61. export CFLAGS
  62. ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
  63. UNLINK = del $(subst /,\,$(1))
  64. else
  65. UNLINK = $(RM) $(1)
  66. endif
  67. all: libgl
  68. libgl: lib
  69. $(MAKE) -f Makefile.mgw -C src/mesa
  70. lib:
  71. mkdir lib
  72. clean:
  73. $(MAKE) -f Makefile.mgw clean -C src/mesa
  74. realclean: clean
  75. -$(call UNLINK,lib/*.a)
  76. -$(call UNLINK,lib/*.dll)