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