Makefile.am revision 32001f49
1# Copyright © 2009 Intel Corporation 2# 3# Permission is hereby granted, free of charge, to any person obtaining a 4# copy of this software and associated documentation files (the "Software"), 5# to deal in the Software without restriction, including without limitation 6# the rights to use, copy, modify, merge, publish, distribute, sublicense, 7# and/or sell copies of the Software, and to permit persons to whom the 8# Software is furnished to do so, subject to the following conditions: 9# 10# The above copyright notice and this permission notice (including the next 11# paragraph) shall be included in all copies or substantial portions of the 12# Software. 13# 14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 20# IN THE SOFTWARE. 21# 22# Authors: 23# Eric Anholt <eric@anholt.net> 24 25AM_CFLAGS = \ 26 $(DEMO_CFLAGS) \ 27 $(GLUT_CFLAGS) \ 28 -I$(top_srcdir)/src/util 29AM_LDFLAGS = \ 30 $(DEMO_LIBS) \ 31 $(GLUT_LIBS) 32 33if HAVE_GLUT 34bin_PROGRAMS = \ 35 arbfplight \ 36 arbfslight \ 37 arbocclude \ 38 arbocclude2 \ 39 bounce \ 40 clearspd \ 41 copypix \ 42 cubemap \ 43 cuberender \ 44 dinoshade \ 45 dissolve \ 46 drawpix \ 47 engine \ 48 fbo_firecube \ 49 fbotexture \ 50 fire \ 51 fogcoord \ 52 fplight \ 53 fslight \ 54 gamma \ 55 gearbox \ 56 gears \ 57 geartrain \ 58 glinfo \ 59 gloss \ 60 gltestperf \ 61 ipers \ 62 isosurf \ 63 lodbias \ 64 morph3d \ 65 multiarb \ 66 paltex \ 67 pixeltest \ 68 pointblast \ 69 projtex \ 70 ray \ 71 readpix \ 72 reflect \ 73 renormal \ 74 shadowtex \ 75 singlebuffer \ 76 spectex \ 77 spriteblast \ 78 stex3d \ 79 teapot \ 80 terrain \ 81 tessdemo \ 82 texcyl \ 83 texenv \ 84 textures \ 85 trispd \ 86 tunnel2 \ 87 tunnel \ 88 vao_demo \ 89 winpos 90endif 91 92tunnel_SOURCES = \ 93 tunnel.c \ 94 tunneldat.h 95 96copypix_LDADD = ../util/libutil.la 97cubemap_LDADD = ../util/libutil.la 98cuberender_LDADD = ../util/libutil.la 99drawpix_LDADD = ../util/libutil.la 100dissolve_LDADD = ../util/libutil.la 101engine_LDADD = ../util/libutil.la 102fbo_firecube_LDADD = ../util/libutil.la 103fire_LDADD = ../util/libutil.la 104gloss_LDADD = ../util/libutil.la 105ipers_LDADD = ../util/libutil.la 106isosurf_LDADD = ../util/libutil.la 107lodbias_LDADD = ../util/libutil.la 108multiarb_LDADD = ../util/libutil.la 109projtex_LDADD = ../util/libutil.la 110readpix_LDADD = ../util/libutil.la 111reflect_LDADD = ../util/libutil.la 112teapot_LDADD = ../util/libutil.la 113texcyl_LDADD = ../util/libutil.la 114textures_LDADD = ../util/libutil.la 115tunnel_LDADD = ../util/libutil.la 116tunnel2_LDADD = ../util/libutil.la 117winpos_LDADD = ../util/libutil.la 118 119EXTRA_DIST = \ 120 README 121