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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # $Id: Makefile.win,v 1.2 2001/09/18 16:39:38 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. OSMESASRCS = osdemo.c
  54. !include "../mesawin32.mak"
  55. ##### TARGETS #####
  56. clean::
  57. realclean::
  58. targets: readtex.c readtex.h $(PROGS)
  59. # remove comments when we get non-osmesa pgm working
  60. #$(EXES) : $*.obj $(DEPLIBS)
  61. # echo $@
  62. # $(link) -out:$@ $** $(LIBS)
  63. $(OSMESAEXES) : $*.obj $(DEPLIBS)
  64. echo $@
  65. $(link) -out:$@ $** $(LIBS) $(EXTRALIBS)
  66. readtex.c:
  67. @copy ../util/readtex.c .
  68. readtex.h:
  69. @copy ../util/readtex.c .