]>
Commit | Line | Data |
---|---|---|
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/progress.c \ | |
12 | src/wav_reader.c | |
13 | ||
14 | fdkaac_LDADD = \ | |
15 | @LIBICONV@ -lfdk-aac -lm | |
16 | ||
17 | if FDK_PLATFORM_POSIX | |
18 | fdkaac_SOURCES += \ | |
19 | src/compat_posix.c | |
20 | endif | |
21 | ||
22 | if FDK_PLATFORM_WIN32 | |
23 | fdkaac_SOURCES += \ | |
24 | src/compat_win32.c | |
25 | endif | |
26 | ||
27 | if FDK_NO_GETOPT_LONG | |
28 | fdkaac_SOURCES += \ | |
29 | missings/getopt.c | |
30 | AM_CPPFLAGS = -Imissings | |
31 | endif | |
32 | ||
33 | EXTRA_DIST = \ | |
34 | m4/.gitkeep \ | |
35 | src/*.h \ | |
36 | missings/*.c \ | |
37 | missings/*.h \ | |
38 | MSVC/*.vcxproj \ | |
39 | MSVC/*.vcxproj.filters \ | |
40 | MSVC/*.sln |