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.DJ 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. # 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. # X86=1 optimize for x86 (if possible, use MMX, SSE, 3DNow).
  44. # default = no
  45. #
  46. # Targets:
  47. # all: build everything
  48. # libgl: build GL
  49. # libglu: build GLU
  50. # libglut: build GLUT
  51. # clean: remove object files
  52. # realclean: remove all generated files
  53. #
  54. .PHONY : all libgl libglu libglut clean realclean
  55. CPU ?= pentium
  56. GLU ?= mesa
  57. CFLAGS = -Wall -W -pedantic
  58. CFLAGS += -O2 -ffast-math -mtune=$(CPU)
  59. export CFLAGS
  60. ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
  61. UNLINK = del $(subst /,\,$(1))
  62. else
  63. UNLINK = $(RM) $(1)
  64. endif
  65. all: libgl libglu libglut
  66. libgl: lib
  67. $(MAKE) -f Makefile.DJ -C src/mesa
  68. libglu: lib
  69. $(MAKE) -f Makefile.DJ -C src/glu/$(GLU)
  70. libglut: lib
  71. $(MAKE) -f Makefile.DJ -C src/glut/dos
  72. lib:
  73. mkdir lib
  74. clean:
  75. $(MAKE) -f Makefile.DJ clean -C src/mesa
  76. $(MAKE) -f Makefile.DJ clean -C src/glu/mesa
  77. $(MAKE) -f Makefile.DJ clean -C src/glu/sgi
  78. $(MAKE) -f Makefile.DJ clean -C src/glut/dos
  79. realclean: clean
  80. -$(call UNLINK,lib/*.a)
  81. -$(call UNLINK,lib/*.dxe)