blob: 89eebfd2d075b9b19920d247c148de36005888a7 (
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
bin_PROGRAMS = ncmpcpp
ncmpcpp_SOURCES = \
utility/comparators.cpp \
utility/html.cpp \
utility/option_parser.cpp \
utility/string.cpp \
utility/type_conversions.cpp \
utility/wide_string.cpp \
actions.cpp \
bindings.cpp \
browser.cpp \
charset.cpp \
clock.cpp \
configuration.cpp \
curl_handle.cpp \
display.cpp \
enums.cpp \
format.cpp \
global.cpp \
help.cpp \
helpers.cpp \
lastfm.cpp \
lastfm_service.cpp \
lyrics.cpp \
lyrics_fetcher.cpp \
macro_utilities.cpp \
media_library.cpp \
mpdpp.cpp \
mutable_song.cpp \
ncmpcpp.cpp \
outputs.cpp \
playlist.cpp \
playlist_editor.cpp \
screen.cpp \
screen_type.cpp \
scrollpad.cpp \
search_engine.cpp \
sel_items_adder.cpp \
server_info.cpp \
settings.cpp \
song.cpp \
song_info.cpp \
song_list.cpp \
sort_playlist.cpp \
status.cpp \
statusbar.cpp \
tag_editor.cpp \
tags.cpp \
tiny_tag_editor.cpp \
title.cpp \
visualizer.cpp \
window.cpp
# set the include path found by configure
INCLUDES= $(all_includes)
# the library search path.
ncmpcpp_LDFLAGS = $(all_libraries)
noinst_HEADERS = \
helpers/song_iterator_maker.h \
utility/comparators.h \
utility/conversion.h \
utility/functional.h \
utility/html.h \
utility/option_parser.h \
utility/readline.h \
utility/string.h \
utility/type_conversions.h \
utility/wide_string.h \
bindings.h \
browser.h \
charset.h \
clock.h \
configuration.h \
curl_handle.h \
display.h \
enums.h \
format.h \
format_impl.h \
global.h \
help.h \
helpers.h \
interfaces.h \
lastfm.h \
lastfm_service.h \
lyrics.h \
lyrics_fetcher.h \
macro_utilities.h \
media_library.h \
menu.h \
menu_impl.h \
mpdpp.h \
mutable_song.h \
outputs.h \
playlist_editor.h \
regex_filter.h \
runnable_item.h \
screen.h \
screen_switcher.h \
screen_type.h \
scrollpad.h \
search_engine.h \
sel_items_adder.h \
server_info.h \
settings.h \
song.h \
song_info.h \
song_list.h \
sort_playlist.h \
status.h \
statusbar.h \
tag_editor.h \
tags.h \
tiny_tag_editor.h \
title.h \
visualizer.h \
window.h
|