diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-10-12 19:12:49 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-10-12 19:12:49 +0000 |
commit | 6ee61bb4ea8022317eeb63751265c0e5744aeda1 (patch) | |
tree | 2fd5a8018f5ef999f0f35d428bf568c7e37d5509 /src/libxineadec/gsm610/Makefile.am | |
parent | 06111f4d32c4dbfbc1186f1a75aa9352a5b037da (diff) | |
download | xine-lib-6ee61bb4ea8022317eeb63751265c0e5744aeda1.tar.gz xine-lib-6ee61bb4ea8022317eeb63751265c0e5744aeda1.tar.bz2 |
added GSM 6.10 audio decoder
CVS patchset: 2817
CVS date: 2002/10/12 19:12:49
Diffstat (limited to 'src/libxineadec/gsm610/Makefile.am')
-rw-r--r-- | src/libxineadec/gsm610/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/libxineadec/gsm610/Makefile.am b/src/libxineadec/gsm610/Makefile.am new file mode 100644 index 000000000..ffd8b18e1 --- /dev/null +++ b/src/libxineadec/gsm610/Makefile.am @@ -0,0 +1,46 @@ +## +## Process this file with automake to produce Makefile.in +## + +CFLAGS = @CFLAGS@ +ASFLAGS = + +LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic + +noinst_LTLIBRARIES = libgsm610.la + +libgsm610_la_SOURCES = \ + add.c \ + decode.c \ + gsm_create.c \ + gsm_decode.c \ + gsm_destroy.c \ + long_term.c \ + lpc.c \ + rpe.c \ + short_term.c \ + table.c + +libgsm610_la_LDFLAGS = -avoid-version -module + +noinst_HEADERS = \ + gsm_config.h \ + gsm.h \ + private.h \ + proto.h \ + unproto.h + +debug: + @$(MAKE) CFLAGS="$(DEBUG_CFLAGS) $(LIBFFMPEG_CFLAGS)" + +install-debug: debug + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +mostlyclean-generic: + -rm -f *~ \#* .*~ .\#* + +maintainer-clean-generic: + -@echo "This command is intended for maintainers to use;" + -@echo "it deletes files that may require special tools to rebuild." + -rm -f Makefile.in + |