Revert "wglgears: show stereo-option in usage"
[mesa-demos.git] / src / demos / Makefile.cygnus
blobd1344b142aa9abe4557df3340758b366ecff9fc9
2 # Mesa 3-D graphics library
3 # Version:  3.3
4 # Copyright (C) 1995-2000  Brian Paul
7 # Makefile for demo programs for cygnus
8 # Stephane Rehel (rehel@worldnet.fr) April 13 1997
12 ##### MACROS #####
14 INCDIR = ../include
15 LIBDIR = ../lib
17 GL_LIBS = -L$(LIBDIR) -lglut -lMesaGLU -lMesaGL -lm $(WLIBS)
19 LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
21 PROGS = bounce \
22         clearspd \
23         cubemap \
24         drawpix \
25         fire \
26         gamma \
27         gears \
28         geartrain \
29         glinfo \
30         gloss \
31         gltestperf \
32         glutfx \
33         isosurf \
34         ipers \
35         lodbias \
36         morph3d \
37         multiarb \
38         osdemo \
39         paltex \
40         pixeltex \
41         pointblast \
42         ray \
43         readpix \
44         reflect \
45         renormal \
46         spectex \
47         stex3d \
48         teapot \
49         terrain \
50         tessdemo \
51         texcyl \
52         texdown \
53         texenv \
54         texobj \
55         trispd \
56         tunnel \
57         tunnel2 \
58         winpos
61 ##### RULES #####
63 .SUFFIXES:
64 .SUFFIXES: .c
66 .c: $(LIB_DEP)
67         $(CC) -I$(INCDIR) -I../util $(CFLAGS) $< $(GL_LIBS) -o $@
70 ##### TARGETS #####
72 default:
73         @echo "Specify a target configuration"
75 clean:
76         -rm *.o *~
78 realclean:
79         -rm $(PROGS:=.exe)
80         -rm *.o *~
82 targets: $(PROGS)
84 include ../Make-config