-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
executable file
·37 lines (26 loc) · 1.16 KB
/
Makefile.am
File metadata and controls
executable file
·37 lines (26 loc) · 1.16 KB
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
#AUTOMAKE_OPTIONS = subdir-objects 1.6 dist-zip
AUTOMAKE_OPTIONS = subdir-objects 1.11 dist-zip dist-xz
SUBDIRS = .
INCLUDES = -I$(top_srcdir)/src
AM_CFLAGS = $(OGG_CFLAGS) $(Opus_CFLAGS) -DOPUSTOOLS -D_FORTIFY_SOURCE=2 -DHAVE_GETOPT_H -DSPX_RESAMPLE_EXPORT= -DRANDOM_PREFIX=opustools -DOUTSIDE_SPEEX -DFLOATING_POINT
bin_PROGRAMS = opusenc opusdec
noinst_HEADERS = src/arch.h \
src/diag_range.h \
src/info_opus.h \
src/lpc.h \
src/opusenc.h \
src/opus_header.h \
src/os_support.h \
src/speex_resampler.h \
src/stack_alloc.h \
src/wave_out.h \
src/wav_io.h
EXTRA_DIST = Makefile.unix
dist_man_MANS = man/opusenc.1 man/opusdec.1
opusenc_SOURCES = src/opus_header.c src/opusenc.c src/resample.c src/diag_range.c src/lpc.c
opusenc_LDADD = $(OGG_LIBS) $(Opus_LIBS) -lm
opusenc_MANS = man/opusenc.1
opusdec_SOURCES = src/opus_header.c src/wav_io.c src/wave_out.c src/opusdec.c src/resample.c src/diag_range.c
opusdec_LDADD = $(OGG_LIBS) $(Opus_LIBS) $(OSS_LIBS) -lm
opusdec_MANS = man/opusdec.1
#TESTS = FIXME