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
2532001f49Smrg# These programs aren't intended to be included with the normal distro.
2632001f49Smrg# They're not too interesting but they're good for testing.
2732001f49Smrg
2832001f49SmrgAM_CFLAGS = \
2932001f49Smrg	$(DEMO_CFLAGS) \
3032001f49Smrg	$(GLUT_CFLAGS) \
3132001f49Smrg	-I$(top_srcdir)/src/util
3232001f49SmrgAM_LDFLAGS = \
3332001f49Smrg	$(DEMO_LIBS) \
3432001f49Smrg	$(GLUT_LIBS)
3532001f49Smrg
3632001f49Smrgif HAVE_GLUT
3732001f49Smrgnoinst_PROGRAMS = \
3832001f49Smrg	fp-tri
3932001f49Smrgendif
4032001f49Smrg
4132001f49SmrgEXTRA_DIST = \
4232001f49Smrg	dowhile2.glsl \
4332001f49Smrg	dowhile.glsl \
4432001f49Smrg	forbreak.glsl \
4532001f49Smrg	for.glsl \
4632001f49Smrg	mov.glsl \
4732001f49Smrg	mov-imm.glsl \
4832001f49Smrg	simpleif.glsl \
4932001f49Smrg	tex.glsl \
5032001f49Smrg	tex-multi.glsl \
5132001f49Smrg	while2.glsl \
5232001f49Smrg	while.glsl
53