| ACLOCAL_AMFLAGS = -I m4 |
| |
| #AUTOMAKE_OPTIONS = subdir-objects 1.6 dist-zip |
| AUTOMAKE_OPTIONS = subdir-objects 1.11 dist-zip dist-xz |
| |
| SUBDIRS = . |
| |
| AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/win32 -D_FORTIFY_SOURCE=2 |
| AM_CFLAGS = $(OPUS_CFLAGS) $(OGG_CFLAGS) |
| |
| bin_PROGRAMS = opusenc opusdec opusinfo |
| noinst_PROGRAMS = opusrtp |
| |
| noinst_HEADERS = src/arch.h \ |
| src/diag_range.h \ |
| src/flac.h \ |
| src/info_opus.h \ |
| src/lpc.h \ |
| src/opusenc.h \ |
| src/opus_header.h \ |
| src/opusinfo.h \ |
| src/os_support.h \ |
| src/picture.h \ |
| src/resample_sse.h \ |
| src/speex_resampler.h \ |
| src/stack_alloc.h \ |
| win32/unicode_support.h \ |
| src/cpusupport.h \ |
| src/wave_out.h \ |
| src/wav_io.h |
| |
| EXTRA_DIST = Makefile.unix \ |
| man/opusrtp.1 \ |
| opus-tools.sln \ |
| src/opusdec.vcxproj.filters \ |
| src/opusinfo.vcxproj.filters \ |
| src/opusenc.vcxproj.filters \ |
| src/opusinfo.vcxproj \ |
| src/opusenc.vcxproj \ |
| src/opusdec.vcxproj \ |
| include/getopt.h \ |
| share/getopt.c \ |
| share/getopt1.c \ |
| win32/genversion.bat \ |
| win32/config.h \ |
| win32/unicode_support.h \ |
| win32/unicode_support.c \ |
| win32/version.h |
| |
| dist_man_MANS = man/opusenc.1 man/opusdec.1 man/opusinfo.1 |
| |
| resampler_CPPFLAGS = -DSPX_RESAMPLE_EXPORT= -DRANDOM_PREFIX=opustools -DOUTSIDE_SPEEX -DFLOATING_POINT |
| |
| opusenc_SOURCES = src/opus_header.c src/opusenc.c src/picture.c src/resample.c src/audio-in.c src/diag_range.c src/flac.c src/lpc.c win32/unicode_support.c |
| opusenc_CPPFLAGS = $(AM_CPPFLAGS) $(resampler_CPPFLAGS) |
| opusenc_CFLAGS = $(AM_CFLAGS) $(FLAC_CFLAGS) |
| opusenc_LDADD = $(OPUS_LIBS) $(FLAC_LIBS) $(OGG_LIBS) $(LIBM) |
| 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 win32/unicode_support.c |
| opusdec_CPPFLAGS = $(AM_CPPFLAGS) $(resampler_CPPFLAGS) |
| opusdec_LDADD = $(OPUS_LIBS) $(OGG_LIBS) $(LIBM) |
| opusdec_MANS = man/opusdec.1 |
| |
| opusinfo_SOURCES = src/opus_header.c src/opusinfo.c src/info_opus.c src/picture.c win32/unicode_support.c |
| opusinfo_CPPFLAGS = $(AM_CPPFLAGS) -DOPUSTOOLS |
| opusinfo_LDADD = $(OGG_LIBS) |
| opusinfo_MANS = man/opusinfo.1 |
| |
| opusrtp_SOURCES = src/opusrtp.c |
| opusrtp_LDADD = $(OPUS_LIBS) $(OGG_LIBS) @LIBPCAP@ |
| |
| #TESTS = FIXME |
| |
| |
| # We check this every time make is run, with configure.ac being touched to |
| # trigger an update of the build system files if update_version changes the |
| # current PACKAGE_VERSION (or if package_version was modified manually by a |
| # user with either AUTO_UPDATE=no or no update_version script present - the |
| # latter being the normal case for tarball releases). |
| # |
| # We can't just add the package_version file to CONFIGURE_DEPENDENCIES since |
| # simply running autoconf will not actually regenerate configure for us when |
| # the content of that file changes (due to autoconf dependency checking not |
| # knowing about that without us creating yet another file for it to include). |
| # |
| # The MAKECMDGOALS check is a gnu-make'ism, but will degrade 'gracefully' for |
| # makes that don't support it. The only loss of functionality is not forcing |
| # an update of package_version for `make dist` if AUTO_UPDATE=no, but that is |
| # unlikely to be a real problem for any real user. |
| $(top_srcdir)/configure.ac: force |
| @case "$(MAKECMDGOALS)" in \ |
| dist-hook) exit 0 ;; \ |
| dist-* | dist | distcheck | distclean) _arg=release ;; \ |
| esac; \ |
| if ! $(top_srcdir)/update_version $$_arg 2> /dev/null; then \ |
| if [ ! -e $(top_srcdir)/package_version ]; then \ |
| echo 'PACKAGE_VERSION="unknown"' > $(top_srcdir)/package_version; \ |
| fi; \ |
| . $(top_srcdir)/package_version || exit 1; \ |
| [ "$(PACKAGE_VERSION)" != "$$PACKAGE_VERSION" ] || exit 0; \ |
| fi; \ |
| touch $@ |
| |
| force: |
| |
| # Create a minimal package_version file when make dist is run. |
| dist-hook: |
| echo 'PACKAGE_VERSION="$(PACKAGE_VERSION)"' > $(top_distdir)/package_version |
| |