Clone of mesa.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. # DOS/DJGPP makefile v1.4 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. # GLU=[mesa|sgi] specify GLU directory; can be `sgi' (requires GNU/C++)
  34. # or `mesa'.
  35. # default = mesa
  36. # GLIDE path to Glide3 SDK; used with FX.
  37. # default = $(TOP)/glide3
  38. # FX=1 build for 3dfx Glide3. Note that this disables
  39. # compilation of most DMesa code and requires fxMesa.
  40. # As a consequence, you'll need the DJGPP Glide3
  41. # library to build any application.
  42. # default = no
  43. # MATROX=1 build for Matrox Millennium I (MGA2064W) cards.
  44. # This is experimental and not intensively tested.
  45. # default = no
  46. # HAVE_X86=1 optimize for i386.
  47. # default = no
  48. # HAVE_MMX=1 allow MMX specializations, provided your assembler
  49. # supports MMX instruction set. However, the true CPU
  50. # capabilities are checked at run-time to avoid crashes.
  51. # default = no
  52. # HAVE_SSE=1 (see HAVE_MMX)
  53. # default = no
  54. # HAVE_3DNOW=1 (see HAVE_MMX)
  55. # default = no
  56. #
  57. # Targets:
  58. # all: build everything
  59. # libgl: build GL
  60. # libglu: build GLU
  61. # libglut: build GLUT
  62. # clean: remove object files
  63. # realclean: remove all generated files
  64. #
  65. .PHONY : all libgl libglu libglut clean realclean
  66. CPU ?= pentium
  67. GLU ?= mesa
  68. CFLAGS = -Wall -W -pedantic
  69. CFLAGS += -O2 -ffast-math -mcpu=$(CPU)
  70. export CFLAGS
  71. ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
  72. UNLINK = del $(subst /,\,$(1))
  73. else
  74. UNLINK = $(RM) $(1)
  75. endif
  76. all: libgl libglu libglut
  77. libgl: lib
  78. $(MAKE) -f Makefile.DJ -C src/mesa
  79. libglu: lib
  80. $(MAKE) -f Makefile.DJ -C src/glu/$(GLU)
  81. libglut: lib
  82. $(MAKE) -f Makefile.DJ -C src/glut/dos
  83. lib:
  84. mkdir lib
  85. clean:
  86. $(MAKE) -f Makefile.DJ clean -C src/mesa
  87. $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
  88. $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
  89. $(MAKE) -f Makefile.DJ clean -C src/glut/dos
  90. realclean: clean
  91. -$(call UNLINK,lib/*.a)
  92. -$(call UNLINK,lib/*.dxe)