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