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.win 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # $Id: Makefile.win,v 1.6 2001/10/26 21:01:45 kschultz Exp $
  2. # Mesa 3-D graphics library
  3. # Version: 3.5
  4. # Copyright (C) 1995-2001 Brian Paul
  5. # Makefile for GLUT-based demo programs for Windows
  6. !include <win32.mak>
  7. ##### MACROS #####
  8. TOP = ..
  9. INCDIR = ..\include
  10. LIBDIR = ..\lib
  11. PROGS = anisotropic \
  12. bounce \
  13. clearspd \
  14. cubemap \
  15. drawpix \
  16. fire \
  17. gamma \
  18. gears \
  19. geartrain \
  20. glinfo \
  21. gloss \
  22. gltestperf \
  23. glutfx \
  24. isosurf \
  25. ipers \
  26. lodbias \
  27. morph3d \
  28. multiarb \
  29. occlude \
  30. osdemo \
  31. paltex \
  32. pixeltex \
  33. pointblast \
  34. ray \
  35. readpix \
  36. reflect \
  37. renormal \
  38. shadowtex \
  39. spectex \
  40. stex3d \
  41. teapot \
  42. terrain \
  43. tessdemo \
  44. texcyl \
  45. texdown \
  46. texenv \
  47. texobj \
  48. trispd \
  49. tunnel \
  50. tunnel2 \
  51. winpos
  52. SRCS = \
  53. bounce.c \
  54. clearspd.c \
  55. cubemap.c \
  56. drawpix.c \
  57. fire.c \
  58. gamma.c \
  59. gears.c \
  60. geartrain.c \
  61. glinfo.c \
  62. gloss.c \
  63. isosurf.c \
  64. morph3d.c \
  65. teapot.c
  66. OSMESASRCS = osdemo.c
  67. !include "../mesawin32.mak"
  68. ##### TARGETS #####
  69. clean::
  70. clobber::
  71. @del readtex.c readtex.h
  72. $(EXES) : $*.obj readtex.c readtex.h
  73. @echo $@
  74. $(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)
  75. $(OSMESAEXES) : $*.obj
  76. @echo $@
  77. $(link) $(lcommon) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS) $(EXTRALIBS)
  78. readtex.c:
  79. -copy ..\util\readtex.c .
  80. readtex.h:
  81. -copy ..\util\readtex.h .