Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Makefile.DJ 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.6 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. # GLU=[mesa|sgi] specify GLU directory; can be `sgi' (requires GNU/C++)
  32. # or `mesa'.
  33. # default = mesa
  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 DMesa code and requires fxMesa.
  38. # As a consequence, you'll need the DJGPP Glide3
  39. # library to build any application.
  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. # libglu: build GLU
  48. # libglut: build GLUT
  49. # clean: remove object files
  50. # realclean: remove all generated files
  51. #
  52. .PHONY : all libgl libglu libglut clean realclean
  53. GLU ?= mesa
  54. CFLAGS = -Wall -W -pedantic
  55. CFLAGS += -O2 -ffast-math
  56. export CFLAGS
  57. ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
  58. UNLINK = del $(subst /,\,$(1))
  59. else
  60. UNLINK = $(RM) $(1)
  61. endif
  62. all: libgl libglu libglut
  63. libgl: lib
  64. $(MAKE) -f Makefile.DJ -C src/mesa
  65. libglu: lib
  66. $(MAKE) -f Makefile.DJ -C src/glu/$(GLU)
  67. libglut: lib
  68. $(MAKE) -f Makefile.DJ -C src/glut/dos
  69. lib:
  70. mkdir lib
  71. clean:
  72. $(MAKE) -f Makefile.DJ clean -C src/mesa
  73. $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
  74. $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
  75. $(MAKE) -f Makefile.DJ clean -C src/glut/dos
  76. realclean: clean
  77. -$(call UNLINK,lib/*.a)
  78. -$(call UNLINK,lib/*.dxe)