blob: 1dda51cc864596a58a044eaefcf906b2684cd036 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
INCLUDES = -I$(top_srcdir)/libaudiofile
noinst_PROGRAMS = \
error \
floatto24 \
transparency \
miscread \
miscwrite \
query2 \
testaupv \
writeaiff \
writeircam \
writenext \
writewave \
writeraw \
writeavr \
writeiff \
writenist \
writeulaw \
writealaw \
loop \
instparamwrite \
instparamtest \
sixteen-to-eight \
testfloat \
twentyfour \
twentyfour2 \
pipe \
testmarkers \
testchannelmatrix \
printmarkers \
seek
EXTRA_DIST = transparency.sh misc.sh pipe.sh
TESTS = error writeaiff writeircam writenext writewave writeraw \
writeavr writeiff writenist \
writeulaw writealaw \
misc.sh transparency.sh pipe.sh \
query2 sixteen-to-eight twentyfour twentyfour2 floatto24 \
testfloat testmarkers testchannelmatrix seek
LDADD = $(top_builddir)/libaudiofile/libaudiofile.la
DEPENDENCIES = $(top_builddir)/libaudiofile/libaudiofile.la
|