refactor pcm io routines
[fdkaac.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2 AUTOMAKE_OPTIONS = subdir-objects
3
4 bin_PROGRAMS = fdkaac
5
6 fdkaac_SOURCES = \
7 src/aacenc.c \
8 src/lpcm.c \
9 src/m4af.c \
10 src/main.c \
11 src/metadata.c \
12 src/parson.c \
13 src/pcm_readhelper.c \
14 src/pcm_sint16_converter.c \
15 src/progress.c \
16 src/wav_reader.c
17
18 fdkaac_LDADD = \
19 @LIBICONV@ -lfdk-aac -lm
20
21 if FDK_PLATFORM_POSIX
22 fdkaac_SOURCES += \
23 src/compat_posix.c
24 endif
25
26 if FDK_PLATFORM_WIN32
27 fdkaac_SOURCES += \
28 src/compat_win32.c
29 endif
30
31 if FDK_NO_GETOPT_LONG
32 fdkaac_SOURCES += \
33 missings/getopt.c
34 AM_CPPFLAGS = -Imissings
35 endif
36
37 EXTRA_DIST = \
38 m4/.gitkeep \
39 src/*.h \
40 missings/*.c \
41 missings/*.h \
42 MSVC/*.vcxproj \
43 MSVC/*.vcxproj.filters \
44 MSVC/*.sln
This page took 0.023329 seconds and 4 git commands to generate.