Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/freealut-1.1.0/test_suite/Makefile.am @ 14

Last change on this file since 14 was 14, checked in by landauf, 16 years ago

added freealut

File size: 745 bytes
Line 
1# The following files should be in our source distribution in addition to the
2# standard ones included by automake itself:
3EXTRA_DIST =                    \
4        file1.wav               \
5        file2.au                \
6        file3.raw
7
8# Build, but do not install the following test programs:
9noinst_PROGRAMS =               \
10        test_errorstuff         \
11        test_fileloader         \
12        test_memoryloader       \
13        test_retrostuff         \
14        test_version            \
15        test_waveforms
16
17# We need to link against our *own* libalut.
18LDADD = ../src/libalut.la
19
20# Specifying the following path is needed to find <AL/alut.h>.
21AM_CPPFLAGS = -I$(top_srcdir)/include
22
23# test_retrostuff tests deprecated functions, but we don't want to get compiler
24# warnings because of that.
25if WNO_DEPRECATED_DECLARATIONS
26test_retrostuff_CFLAGS = -Wno-deprecated-declarations
27endif
Note: See TracBrowser for help on using the repository browser.