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.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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 samples makefile v1.3 for Mesa
  23. #
  24. # Copyright (C) 2002 - Borca Daniel
  25. # Email : dborca@yahoo.com
  26. # Web : http://www.geocities.com/dborca
  27. #
  28. # Available options:
  29. #
  30. # Environment variables:
  31. # CPU optimize for the given processor.
  32. # default = k6
  33. # GLIDE path to Glide3 SDK library files; used with FX.
  34. # default = $(TOP)/lib/glide3
  35. # FX=1 build for 3dfx Glide3. Note that this disables
  36. # compilation of most DMesa code and requires fxMesa.
  37. # As a consequence, you'll need the DJGPP Glide3
  38. # library to build any application.
  39. # default = no
  40. # DXE=1 use DXE modules. The resolution object file must be
  41. # present in the `lib' directory in order to use this
  42. # option (see README.DJ for details).
  43. # default = no
  44. #
  45. # Targets:
  46. # <file.exe> build a specific file
  47. #
  48. .PHONY : all
  49. .SUFFIXES : .c .o .exe
  50. TOP = ..
  51. CPU ?= k6
  52. GLIDE ?= $(TOP)/lib/glide3
  53. CC = gcc
  54. CFLAGS = -Wall -W -pedantic
  55. CFLAGS += -O2 -ffast-math -mcpu=$(CPU)
  56. CFLAGS += -I$(TOP)/include
  57. LD = gxx
  58. LDFLAGS = -s -L$(TOP)/lib
  59. ifeq ($(DXE),1)
  60. DMESADXE = $(TOP)/lib/dmesadxe.o
  61. LDLIBS += -liglut -liglu -ligl -ldl
  62. else
  63. LDLIBS = -lglut -lglu -lgl
  64. ifeq ($(FX),1)
  65. LDFLAGS += -L$(GLIDE)
  66. LDLIBS += -lglid3
  67. endif
  68. endif
  69. .c.o:
  70. $(CC) -o $@ $(CFLAGS) -c $<
  71. .o.exe:
  72. $(LD) -o $@ $(LDFLAGS) $(DMESADXE) $< $(LDLIBS)
  73. all:
  74. $(error Must specify <filename.exe> to build)