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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # $Id: Makefile.win,v 1.1 2002/01/16 01:03:25 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. SRCS = cva.c \
  12. dinoshade.c \
  13. fogcoord.c \
  14. manytex.c \
  15. multipal.c \
  16. projtex.c \
  17. seccolor.c \
  18. # sharedtex.c \
  19. texline.c \
  20. texwrap.c \
  21. vptest1.c \
  22. vptest2.c \
  23. vptest3.c \
  24. vptorus.c \
  25. vpwarpmesh.c
  26. !include "../mesawin32.mak"
  27. ##### TARGETS #####
  28. clean::
  29. clobber::
  30. @del readtex.c readtex.h
  31. $(EXES) :$*.obj
  32. @echo $@
  33. $(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)