blob: dc20efbc574012d340eada6eef45b420c3aa7ff1 (
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
|
## Process this file with automake to produce Makefile.in
SUBDIRS = modules
lib_LTLIBRARIES = libaudiofile.la
EXTRA_DIST = audiofile.exports
libaudiofile_la_SOURCES = \
openclose.c setup.c format.c data.c pcm.c \
error.c byteorder.c af_vfs.c \
util.c debug.c aupv.c units.c compression.c \
aes.c instrument.c loop.c marker.c misc.c track.c query.c \
raw.c raw.h \
aiff.c aiffwrite.c extended.c aiff.h \
next.c nextwrite.c next.h \
wave.c wavewrite.c wave.h \
ircam.c ircamwrite.c ircam.h \
avr.c avrwrite.c avr.h \
iff.c iffwrite.c iff.h \
nist.c nistwrite.c nist.h \
g711.c g711.h \
afinternal.h aupvinternal.h aupvlist.h byteorder.h \
compression.h error.h extended.h instrument.h marker.h \
pcm.h setup.h track.h units.h \
print.h util.h debug.h \
modules.c modules.h
libaudiofile_la_LIBADD = modules/libmodules.la
libaudiofile_la_LDFLAGS = -version-info 0:2:0 -no-undefined \
-export-symbols audiofile.exports
include_HEADERS = audiofile.h aupvlist.h af_vfs.h
# GNU gcc
# AM_CFLAGS = -Wall -g
# SGI MIPSpro cc
# AM_CFLAGS = -fullwarn -g
# No debugging.
AM_CFLAGS = -DNDEBUG
|