-
Notifications
You must be signed in to change notification settings - Fork 38
/
Makefile.am
94 lines (92 loc) · 2.2 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = themes decoder_plugins
AM_CPPFLAGS = -DSYSTEM_THEMES_DIR=\"$(pkgdatadir)/themes\" \
-DPLUGIN_DIR=\"$(plugindir)/$(DECODER_PLUGIN_DIR)\"
bin_PROGRAMS = mocp
mocp_SOURCES = log.c \
log.h \
protocol.h \
protocol.c \
server.c \
server.h \
main.c \
common.c \
common.h \
compiler.h \
playlist.c \
playlist.h \
fifo_buf.c \
fifo_buf.h \
out_buf.c \
out_buf.h \
audio.c \
audio.h \
decoder.c \
decoder.h \
interface.c \
interface.h \
interface_elements.c \
interface_elements.h \
menu.c \
menu.h \
files.c \
files.h \
options.c \
options.h \
player.c \
player.h \
playlist_file.c \
playlist_file.h \
themes.c \
themes.h \
keys.c \
keys.h \
io.c \
io.h \
compat.c \
compat.h \
audio_conversion.c \
audio_conversion.h \
rbtree.c \
rbtree.h \
tags_cache.c \
tags_cache.h \
utf8.c \
utf8.h \
rcc.c \
rcc.h \
softmixer.c \
softmixer.h \
lyrics.h \
lyrics.c \
lists.h \
lists.c \
equalizer.h \
equalizer.c
EXTRA_mocp_SOURCES = \
md5.c \
md5.h \
null_out.c \
null_out.h \
sndio_out.c \
sndio_out.h \
oss.c \
oss.h \
alsa.c \
alsa.h \
io_curl.c \
io_curl.h \
jack.c \
jack.h
man_MANS = mocp.1
mocp_LDADD = @EXTRA_OBJS@ -lltdl -lm
mocp_DEPENDENCIES = @EXTRA_OBJS@
mocp_LDFLAGS = @EXTRA_LIBS@ $(RCC_LIBS) -export-dynamic
EXTRA_DIST = README_equalizer mocp.1 THANKS keymap.example Doxyfile \
doxy_pages/decoder_api.doxy doxy_pages/main_page.doxy \
doxy_pages/sound_output_driver_api.doxy
EXTRA_DIST += @EXTRA_DISTS@
EXTRA_DIST += tools/README tools/md5check.sh tools/maketests.sh
noinst_DATA = tools/README
noinst_SCRIPTS = tools/md5check.sh tools/maketests.sh
doc_DATA = config.example THANKS README README_equalizer keymap.example