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