blob: 320f05b3b70f02fa0d1f6c5ae722b56bdd7b9db6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#
# the Makefile for the native xine audio decoders
#
EXTRA_DIST = fooaudio.c
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
SUBDIRS = gsm610
lib_LTLIBRARIES = \
xineplug_decode_adpcm.la \
xineplug_decode_logpcm.la \
xineplug_decode_roqaudio.la \
xineplug_decode_gsm610.la
xineplug_decode_roqaudio_la_SOURCES = roqaudio.c
xineplug_decode_roqaudio_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_adpcm_la_SOURCES = adpcm.c
xineplug_decode_adpcm_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la
xineplug_decode_adpcm_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_logpcm_la_SOURCES = logpcm.c
xineplug_decode_logpcm_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la
xineplug_decode_logpcm_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_gsm610_la_SOURCES = gsm610.c
xineplug_decode_gsm610_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_decode_gsm610_la_LIBADD = \
$(top_builddir)/src/xine-engine/libxine.la \
$(top_builddir)/src/libxineadec/gsm610/libgsm610.la
# noinst_HEADERS =
debug:
@$(MAKE) CFLAGS="$(DEBUG_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
|