Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile.DJ 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 for Mesa
  23. #
  24. # Author: 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 DMesa code and requires fxMesa.
  35. # As a consequence, you'll need the DJGPP Glide3
  36. # library to build any application.
  37. # default = no
  38. # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
  39. # default = no
  40. #
  41. # Targets:
  42. # all: build everything
  43. # libgl: build GL
  44. # libglu: build GLU
  45. # libglut: build GLUT
  46. # clean: remove object files
  47. # realclean: remove all generated files
  48. #
  49. .PHONY : all libgl libglu libglut clean realclean
  50. CFLAGS = -Wall -W -pedantic
  51. CFLAGS += -O2 -ffast-math
  52. export CFLAGS
  53. ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
  54. UNLINK = del $(subst /,\,$(1))
  55. else
  56. UNLINK = $(RM) $(1)
  57. endif
  58. all: libgl libglu libglut
  59. libgl: lib
  60. $(MAKE) -f Makefile.DJ -C src/mesa
  61. libglu: lib
  62. $(MAKE) -f Makefile.DJ -C src/glu/sgi
  63. libglut: lib
  64. $(MAKE) -f Makefile.DJ -C src/glut/dos
  65. lib:
  66. mkdir lib
  67. clean:
  68. $(MAKE) -f Makefile.DJ clean -C src/mesa
  69. $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
  70. $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
  71. $(MAKE) -f Makefile.DJ clean -C src/glut/dos
  72. realclean: clean
  73. -$(call UNLINK,lib/*.a)
  74. -$(call UNLINK,lib/*.dxe)