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.mgw 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. # MinGW samples makefile v1.1 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. #
  34. # Targets:
  35. # <file.exe> build a specific file
  36. #
  37. .PHONY : all
  38. .SUFFIXES : .c .o .exe
  39. TOP = ../..
  40. CPU ?= pentium
  41. CC = mingw32-gcc
  42. CFLAGS = -Wall -W -pedantic
  43. CFLAGS += -O2 -ffast-math -mcpu=$(CPU)
  44. CFLAGS += -I$(TOP)/include -I../util
  45. ifeq ($(FX),1)
  46. CFLAGS += -DFX
  47. endif
  48. CFLAGS += -DGLUT_DISABLE_ATEXIT_HACK -D_STDCALL_SUPPORTED
  49. CFLAGS += -D_WINDEF_ -D_WINGDI_
  50. LD = mingw32-g++
  51. LDFLAGS = -s -L$(TOP)/lib
  52. LDLIBS = -lglut32 -lglu32 -lopengl32
  53. .c.o:
  54. $(CC) -o $@ $(CFLAGS) -c $<
  55. .o.exe:
  56. $(LD) -o $@ $(LDFLAGS) $< $(LDLIBS)
  57. all:
  58. $(error Must specify <filename.exe> to build)