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 605B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Mesa 3-D graphics library
  2. # Version: 3.5
  3. # Copyright (C) 1995-2001 Brian Paul
  4. # Makefile for GLUT-based demo programs for Windows
  5. !include <win32.mak>
  6. ##### MACROS #####
  7. TOP = ..
  8. INCDIR = ..\include
  9. LIBDIR = ..\lib
  10. SRCS = cva.c \
  11. dinoshade.c \
  12. fogcoord.c \
  13. manytex.c \
  14. multipal.c \
  15. projtex.c \
  16. seccolor.c \
  17. # sharedtex.c \
  18. texline.c \
  19. texwrap.c \
  20. vptest1.c \
  21. vptest2.c \
  22. vptest3.c \
  23. vptorus.c \
  24. vpwarpmesh.c
  25. !include "../mesawin32.mak"
  26. ##### TARGETS #####
  27. clean::
  28. clobber::
  29. @del readtex.c readtex.h
  30. $(EXES) :$*.obj
  31. @echo $@
  32. $(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)