summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 02675227ffcb90a46732fcf78a17e452db6a2ca6 (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
118
119
120
121
122
123
124
125
126
bin_PROGRAMS = ncmpcpp
ncmpcpp_SOURCES = \
	curses/formatted_color.cpp \
	curses/scrollpad.cpp \
	curses/window.cpp \
	screens/browser.cpp \
	screens/clock.cpp \
	screens/help.cpp \
	screens/lastfm.cpp \
	screens/lyrics.cpp \
	screens/media_library.cpp \
	screens/outputs.cpp \
	screens/playlist.cpp \
	screens/playlist_editor.cpp \
	screens/screen.cpp \
	screens/screen_type.cpp \
	screens/search_engine.cpp \
	screens/sel_items_adder.cpp \
	screens/server_info.cpp \
	screens/song_info.cpp \
	screens/sort_playlist.cpp \
	screens/tag_editor.cpp \
	screens/tiny_tag_editor.cpp \
	screens/visualizer.cpp \
	utility/comparators.cpp \
	utility/html.cpp \
	utility/option_parser.cpp \
	utility/sample_buffer.cpp \
	utility/string.cpp \
	utility/type_conversions.cpp \
	utility/wide_string.cpp \
	actions.cpp \
	bindings.cpp \
	charset.cpp \
	configuration.cpp \
	curl_handle.cpp \
	display.cpp \
	enums.cpp \
	format.cpp \
	global.cpp \
	helpers.cpp \
	lastfm_service.cpp \
	lyrics_fetcher.cpp \
	macro_utilities.cpp \
	mpdpp.cpp \
	mutable_song.cpp \
	ncmpcpp.cpp \
	settings.cpp \
	song.cpp \
	song_list.cpp \
	status.cpp \
	statusbar.cpp \
	tags.cpp \
	title.cpp

# set the include path found by configure
AM_CPPFLAGS= $(all_includes)

# the library search path.
ncmpcpp_LDFLAGS = $(all_libraries)
noinst_HEADERS = \
	curses/formatted_color.h \
	curses/menu.h \
	curses/menu_impl.h \
	curses/scrollpad.h \
	curses/strbuffer.h \
	curses/window.h \
	screens/browser.h \
	screens/clock.h \
	screens/help.h \
	screens/lastfm.h \
	screens/lyrics.h \
	screens/media_library.h \
	screens/outputs.h \
	screens/playlist_editor.h \
	screens/screen.h \
	screens/screen_switcher.h \
	screens/screen_type.h \
	screens/search_engine.h \
	screens/sel_items_adder.h \
	screens/server_info.h \
	screens/song_info.h \
	screens/sort_playlist.h \
	screens/tag_editor.h \
	screens/tiny_tag_editor.h \
	screens/visualizer.h \
	utility/comparators.h \
	utility/const.h \
	utility/conversion.h \
	utility/functional.h \
	utility/html.h \
	utility/option_parser.h \
	utility/readline.h \
	utility/sample_buffer.h \
	utility/scoped_value.h \
	utility/storage_kind.h \
	utility/shared_resource.h \
	utility/string.h \
	utility/type_conversions.h \
	utility/wide_string.h \
	bindings.h \
	charset.h \
	configuration.h \
	curl_handle.h \
	display.h \
	enums.h \
	format.h \
	format_impl.h \
	global.h \
	helpers.h \
	helpers/song_iterator_maker.h \
	interfaces.h \
	lastfm_service.h \
	lyrics_fetcher.h \
	macro_utilities.h \
	mpdpp.h \
	mutable_song.h \
	regex_filter.h \
	runnable_item.h \
	settings.h \
	song.h \
	song_list.h \
	status.h \
	statusbar.h \
	tags.h \
	title.h