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

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # $Id: Makefile.win,v 1.1 2002/01/16 00:57:54 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 = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
  12. font line logo nurb oglinfo olympic overlay point prim quad select \
  13. shape sphere star stencil stretch texture tri wave
  14. SRCS = \
  15. accum.c \
  16. bitmap1.c \
  17. bitmap2.c \
  18. blendeq.c \
  19. blendxor.c \
  20. copy.c \
  21. cursor.c depth.c eval.c fog.c \
  22. font.c line.c logo.c nurb.c olympic.c overlay.c point.c prim.c quad.c select.c \
  23. shape.c sphere.c star.c stencil.c stretch.c texture.c tri.c wave.c
  24. !include "../mesawin32.mak"
  25. ##### TARGETS #####
  26. clean::
  27. clobber::
  28. $(EXES) : $*.obj
  29. @echo $@
  30. $(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)