132001f49Smrg# Copyright © 2009 Intel Corporation
232001f49Smrg#
332001f49Smrg# Permission is hereby granted, free of charge, to any person obtaining a
432001f49Smrg# copy of this software and associated documentation files (the "Software"),
532001f49Smrg# to deal in the Software without restriction, including without limitation
632001f49Smrg# the rights to use, copy, modify, merge, publish, distribute, sublicense,
732001f49Smrg# and/or sell copies of the Software, and to permit persons to whom the
832001f49Smrg# Software is furnished to do so, subject to the following conditions:
932001f49Smrg#
1032001f49Smrg# The above copyright notice and this permission notice (including the next
1132001f49Smrg# paragraph) shall be included in all copies or substantial portions of the
1232001f49Smrg# Software.
1332001f49Smrg#
1432001f49Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1532001f49Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1632001f49Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
1732001f49Smrg# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1832001f49Smrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1932001f49Smrg# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
2032001f49Smrg# IN THE SOFTWARE.
2132001f49Smrg#
2232001f49Smrg# Authors:
2332001f49Smrg#    Eric Anholt <eric@anholt.net>
2432001f49Smrg
2532001f49SmrgAM_CFLAGS = \
2632001f49Smrg	$(DEMO_CFLAGS) \
2732001f49Smrg	$(GLUT_CFLAGS) \
2832001f49Smrg	-I$(top_srcdir)/src/util
2932001f49SmrgAM_LDFLAGS = \
3032001f49Smrg	$(DEMO_LIBS) \
3132001f49Smrg	$(GLUT_LIBS)
3232001f49Smrg
3332001f49Smrgif HAVE_GLUT
3432001f49Smrgnoinst_PROGRAMS = \
3532001f49Smrg	accum \
3632001f49Smrg	bitmap1 \
3732001f49Smrg	bitmap2 \
3832001f49Smrg	blendeq \
3932001f49Smrg	blendxor \
4032001f49Smrg	copy \
4132001f49Smrg	cursor \
4232001f49Smrg	depth \
4332001f49Smrg	eval \
4432001f49Smrg	fog \
4532001f49Smrg	font \
4632001f49Smrg	line \
4732001f49Smrg	logo \
4832001f49Smrg	nurb \
4932001f49Smrg	olympic \
5032001f49Smrg	overlay \
5132001f49Smrg	point \
5232001f49Smrg	prim \
5332001f49Smrg	quad \
5432001f49Smrg	select \
5532001f49Smrg	shape \
5632001f49Smrg	sphere \
5732001f49Smrg	star \
5832001f49Smrg	stencil \
5932001f49Smrg	stretch \
6032001f49Smrg	texture \
6132001f49Smrg	tri \
6232001f49Smrg	wave
6332001f49Smrgendif
6432001f49Smrg
6532001f49Smrgsphere_LDADD = ../util/libutil.la
6632001f49Smrg
6732001f49SmrgEXTRA_DIST = \
6832001f49Smrg	README \
6932001f49Smrg	loadppm.c \
7032001f49Smrg	tkmap.c
71