blob: 9a2d5c02263330f6a8c585669cffd1ba7af2a8d7 (
plain) (
blame)
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
|
#SUBDIRS =
AM_CPPFLAGS = \
$(GLIB_CFLAGS)\
$(GTHREAD_CFLAGS)\
-DLOCALE_DIR=\""$(datadir)/locale"\"\
-DSYSCONFDIR=\""$(sysconfdir)"\"
ncmpc_LDADD = \
$(GLIB_LIBS)\
$(GTHREAD_LIBS)
ncmpc_headers = \
libmpdclient.h\
resolver.h \
song.h \
mpdclient.h\
playlist.h \
filelist.h \
options.h\
conf.h\
command.h\
ncu.h \
screen.h\
screen_utils.h\
list_window.h\
colors.h\
support.h\
wreadln.h\
strfsong.h\
utils.h\
ncmpc.h\
screen_browser.h \
lyrics.h \
str_pool.h \
gcc.h
# $Id$
bin_PROGRAMS = ncmpc
lyr_src=${lyr_src_fixed}
ncmpc_SOURCES = \
libmpdclient.c\
resolver.c \
song.c \
main.c\
mpdclient.c\
playlist.c \
filelist.c \
options.c\
conf.c\
command.c\
ncu.c \
screen.c\
screen_utils.c\
screen_play.c\
screen_browser.c\
screen_file.c\
screen_artist.c\
screen_search.c\
screen_help.c\
screen_lyrics.c\
screen_keydef.c\
list_window.c\
colors.c\
support.c\
wreadln.c\
strfsong.c\
utils.c\
lyrics.c \
str_pool.c
ncmpc_SOURCES+=${ncmpc_headers}
|