fc277726a025841c35a92474331cff35525cd252
[mesa.git] / progs / samples / Makefile.win
1 # $Id: Makefile.win,v 1.1 2002/01/16 00:57:54 kschultz Exp $
2
3 # Mesa 3-D graphics library
4 # Version: 3.5
5 # Copyright (C) 1995-2001 Brian Paul
6
7 # Makefile for GLUT-based demo programs for Windows
8
9 !include <win32.mak>
10
11 ##### MACROS #####
12
13 TOP = ..
14 INCDIR = ..\include
15 LIBDIR = ..\lib
16
17 PROGS = accum bitmap1 bitmap2 blendeq blendxor copy cursor depth eval fog \
18 font line logo nurb oglinfo olympic overlay point prim quad select \
19 shape sphere star stencil stretch texture tri wave
20
21 SRCS = \
22 accum.c \
23 bitmap1.c \
24 bitmap2.c \
25 blendeq.c \
26 blendxor.c \
27 copy.c \
28 cursor.c depth.c eval.c fog.c \
29 font.c line.c logo.c nurb.c olympic.c overlay.c point.c prim.c quad.c select.c \
30 shape.c sphere.c star.c stencil.c stretch.c texture.c tri.c wave.c
31
32 !include "../mesawin32.mak"
33
34 ##### TARGETS #####
35
36 clean::
37
38 clobber::
39
40 $(EXES) : $*.obj
41 @echo $@
42 $(link) -out:$@ $* /LIBPATH:$(LIBDIR) $(LIBS)