blob: 0a2324b003674ae10258af66c33c71cf1ced99b8 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
CFLAGS = @GLOBAL_CFLAGS@ -DXINE_COMPILE $(ALSA_CFLAGS) $(ESD_CFLAGS) $(IRIXAL_CFLAGS) $(ARTS_CFLAGS)
EXTRA_DIST = audio_alsa_out.c audio_alsa05_out.c audio_esd_out.c \
audio_sun_out.c audio_arts_out.c audio_irixal_out.c
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
if HAVE_OSS
oss_module = xineplug_ao_out_oss.la
endif
#
# alsa plugin is completely broken due to major api change
# on the alsa project side
#
if HAVE_ALSA
if HAVE_ALSA05
alsa05_module = xineplug_ao_out_alsa05.la
endif
if HAVE_ALSA09
alsa_module = xineplug_ao_out_alsa.la
endif
endif
if HAVE_ESD
esd_module = xineplug_ao_out_esd.la
endif
if HAVE_SUNAUDIO
sun_module = xineplug_ao_out_sun.la
endif
if HAVE_IRIXAL
irixal_module = xineplug_ao_out_irixal.la
endif
if HAVE_ARTS
arts_module = xineplug_ao_out_arts.la
endif
##
# IMPORTANT:
# ---------
# All of xine audio out plugins should be named like the
# scheme "xineplug_ao_out_"
#
#lib_LTLIBRARIES = $(oss_module) $(alsa05_module) $(alsa_module) $(sun_module) \
# $(arts_module) $(esd_module)
lib_LTLIBRARIES = $(oss_module) $(alsa_module) $(esd_module) $(sun_module) $(arts_module) \
$(alsa05_module) $(irixal_module)
xineplug_ao_out_oss_la_SOURCES = audio_oss_out.c
xineplug_ao_out_oss_la_LDFLAGS = -avoid-version -module
xineplug_ao_out_alsa05_la_SOURCES = audio_alsa05_out.c
xineplug_ao_out_alsa05_la_LIBADD = $(ALSA_LIBS)
xineplug_ao_out_alsa05_la_LDFLAGS = -avoid-version -module
xineplug_ao_out_alsa_la_SOURCES = audio_alsa_out.c
xineplug_ao_out_alsa_la_LIBADD = $(ALSA_LIBS)
xineplug_ao_out_alsa_la_LDFLAGS = -avoid-version -module
xineplug_ao_out_esd_la_SOURCES = audio_esd_out.c
xineplug_ao_out_esd_la_LIBADD = $(ESD_LIBS)
xineplug_ao_out_esd_la_LDFLAGS = -avoid-version -module
xineplug_ao_out_sun_la_SOURCES = audio_sun_out.c
xineplug_ao_out_sun_la_LIBADD = $(IRIXAL_LIBS)
xineplug_ao_out_sun_la_LDFLAGS = -avoid-version -module
xineplug_ao_out_irixal_la_SOURCES = audio_irixal_out.c
xineplug_ao_out_irixal_la_LIBADD = $(IRIXAL_LIBS)
xineplug_ao_out_irixal_la_LDFLAGS = -avoid-version -module
xineplug_ao_out_arts_la_SOURCES = audio_arts_out.c
xineplug_ao_out_arts_la_LIBADD = $(ARTS_LIBS)
xineplug_ao_out_arts_la_LDFLAGS = -avoid-version -module
noinst_HEADERS = audio_oss_out.h audio_alsa_out.h audio_esd_out.h \
audio_sun_out.h audio_arts_out.h audio_irixal_out.h
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
|