aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 0b1c5ef67f7d615d1a60539405406b51ba80e9f3 (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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign 1.9 dist-bzip2

AM_CPPFLAGS = -I$(srcdir)/src $(GLIB_CFLAGS)

bin_PROGRAMS = src/mpd

src_mpd_CFLAGS = $(AM_CFLAGS) $(MPD_CFLAGS)
src_mpd_CPPFLAGS = $(AM_CPPFLAGS) \
	$(SQLITE_CFLAGS) \
	$(ID3TAG_CFLAGS) \
	$(INPUT_CFLAGS) \
	$(DECODER_CFLAGS) \
	$(ENCODER_CFLAGS) \
	$(OUTPUT_CFLAGS)
src_mpd_LDADD = $(MPD_LIBS) \
	$(SQLITE_LIBS) \
	$(ID3TAG_LIBS) \
	$(INPUT_LIBS) \
	$(DECODER_LIBS) \
	$(ENCODER_LIBS) \
	$(OUTPUT_LIBS) \
	$(GLIB_LIBS)

mpd_headers = \
	src/notify.h \
	src/ack.h \
	src/audio.h \
	src/audio_format.h \
	src/audio_parser.h \
	src/audioOutput.h \
	src/output_internal.h \
	src/output_api.h \
	src/output_plugin.h \
	src/output_list.h \
	src/output_all.h \
	src/output_thread.h \
	src/output_control.h \
	src/output_state.h \
	src/output_print.h \
	src/output_command.h \
	src/buffer2array.h \
	src/command.h \
	src/idle.h \
	src/cmdline.h \
	src/conf.h \
	src/crossfade.h \
	src/dbUtils.h \
	src/decoder_thread.h \
	src/decoder_control.h \
	src/decoder_plugin.h \
	src/decoder_command.h \
	src/decoder_buffer.h \
	src/decoder_api.h \
	src/decoder_plugin.h \
	src/decoder_internal.h \
	src/directory.h \
	src/directory_save.h \
	src/directory_print.h \
	src/database.h \
	src/encoder_plugin.h \
	src/encoder_list.h \
	src/encoder_api.h \
	src/update.h \
	src/dirvec.h \
	src/gcc.h \
	src/decoder_list.h \
	src/decoder/_flac_common.h \
	src/decoder/_ogg_common.h \
	src/input_plugin.h \
	src/input_stream.h \
	src/input/file_input_plugin.h \
	src/input/curl_input_plugin.h \
	src/input/lastfm_input_plugin.h \
	src/input/mms_input_plugin.h \
	src/icy_metadata.h \
	src/client.h \
	src/listen.h \
	src/log.h \
	src/ls.h \
	src/main.h \
	src/mixer_api.h \
	src/event_pipe.h \
	src/daemon.h \
	src/normalize.h \
	src/compress.h \
	src/buffer.h \
	src/pipe.h \
	src/chunk.h \
	src/path.h \
	src/mapper.h \
	src/pcm_buffer.h \
	src/pcm_utils.h \
	src/pcm_convert.h \
	src/pcm_volume.h \
	src/pcm_mix.h \
	src/pcm_channels.h \
	src/pcm_format.h \
	src/pcm_resample.h \
	src/pcm_dither.h \
	src/pcm_prng.h \
	src/permission.h \
	src/player_thread.h \
	src/player_control.h \
	src/playlist.h \
	src/playlist_internal.h \
	src/playlist_print.h \
	src/playlist_save.h \
	src/playlist_state.h \
	src/poison.h \
	src/riff.h \
	src/aiff.h \
	src/queue.h \
	src/queue_print.h \
	src/queue_save.h \
	src/replay_gain.h \
	src/sig_handlers.h \
	src/song.h \
	src/song_print.h \
	src/song_save.h \
	src/song_sticker.h \
	src/songvec.h \
	src/socket_util.h \
	src/state_file.h \
	src/stats.h \
	src/sticker.h \
	src/tag.h \
	src/tag_internal.h \
	src/tag_pool.h \
	src/tag_ape.h \
	src/tag_id3.h \
	src/tag_print.h \
	src/tag_save.h \
	src/strset.h \
	src/uri.h \
	src/utils.h \
	src/volume.h \
	src/zeroconf.h src/zeroconf-internal.h \
	src/locate.h \
	src/stored_playlist.h \
	src/timer.h \
	src/archive_api.h \
	src/archive_internal.h \
	src/archive_list.h \
	src/input/archive_input_plugin.h

src_mpd_SOURCES = \
	$(mpd_headers) \
	$(ARCHIVE_SRC) \
	$(INPUT_SRC) \
	$(DECODER_SRC) \
	$(ENCODER_SRC) \
	$(OUTPUT_API_SRC) $(OUTPUT_SRC) \
	$(MIXER_SRC) \
	src/notify.c \
	src/audio.c \
	src/audio_parser.c \
	src/audioOutput.c \
	src/buffer2array.c \
	src/command.c \
	src/idle.c \
	src/cmdline.c \
	src/conf.c \
	src/crossfade.c \
	src/dbUtils.c \
	src/decoder_thread.c \
	src/decoder_control.c \
	src/decoder_api.c \
	src/decoder_internal.c \
	src/directory.c \
	src/directory_save.c \
	src/directory_print.c \
	src/database.c \
	src/dirvec.c \
	src/update.c \
	src/client.c \
	src/listen.c \
	src/log.c \
	src/ls.c \
	src/main.c \
	src/event_pipe.c \
	src/daemon.c \
	src/normalize.c \
	src/compress.c \
	src/buffer.c \
	src/pipe.c \
	src/chunk.c \
	src/path.c \
	src/mapper.c \
	src/pcm_convert.c \
	src/pcm_volume.c \
	src/pcm_mix.c \
	src/pcm_channels.c \
	src/pcm_format.c \
	src/pcm_resample.c \
	src/pcm_dither.c \
	src/permission.c \
	src/player_thread.c \
	src/player_control.c \
	src/playlist.c \
	src/playlist_global.c \
	src/playlist_control.c \
	src/playlist_edit.c \
	src/playlist_print.c \
	src/playlist_save.c \
	src/playlist_state.c \
	src/queue.c \
	src/queue_print.c \
	src/queue_save.c \
	src/replay_gain.c \
	src/sig_handlers.c \
	src/song.c \
	src/song_print.c \
	src/song_save.c \
	src/songvec.c \
	src/socket_util.c \
	src/state_file.c \
	src/stats.c \
	src/tag.c \
	src/tag_pool.c \
	src/tag_print.c \
	src/tag_save.c \
	src/tag_ape.c \
	src/strset.c \
	src/uri.c \
	src/utils.c \
	src/volume.c \
	src/locate.c \
	src/stored_playlist.c \
	src/timer.c

if ENABLE_SQLITE
src_mpd_SOURCES += src/sticker.c src/song_sticker.c
endif

if HAVE_LIBSAMPLERATE
src_mpd_SOURCES += src/pcm_resample_libsamplerate.c
else
src_mpd_SOURCES += src/pcm_resample_fallback.c
endif

if HAVE_ID3TAG
src_mpd_SOURCES += src/tag_id3.c \
	src/riff.c src/aiff.c
endif

# archive plugins

ARCHIVE_SRC =

if HAVE_BZ2
ARCHIVE_SRC += src/archive/bz2_plugin.c
endif

if HAVE_ZIP
ARCHIVE_SRC += src/archive/zip_plugin.c
endif

if HAVE_ISO
ARCHIVE_SRC += src/archive/iso_plugin.c
endif

if ENABLE_ARCHIVE
ARCHIVE_SRC += \
	src/archive_api.c \
	src/archive_list.c \
	src/input/archive_input_plugin.c
endif


# decoder plugins

DECODER_CFLAGS = \
	$(OGGVORBIS_CFLAGS) \
	$(patsubst -I%/FLAC,-I%,$(FLAC_CFLAGS)) \
	$(AUDIOFILE_CFLAGS) \
	$(LIBMIKMOD_CFLAGS) \
	$(MODPLUG_CFLAGS) \
	$(SIDPLAY_CFLAGS) \
	$(FLUIDSYNTH_CFLAGS) \
	$(WILDMIDI_CFLAGS) \
	$(MAD_CFLAGS) \
	$(FFMPEG_CFLAGS)

DECODER_LIBS = \
	$(OGGVORBIS_LIBS) $(FLAC_LIBS) \
	$(AUDIOFILE_LIBS) $(LIBMIKMOD_LIBS) \
	$(MODPLUG_LIBS) \
	$(SIDPLAY_LIBS) \
	$(FLUIDSYNTH_LIBS) \
	$(WILDMIDI_LIBS) \
	$(MAD_LIBS) \
	$(MP4FF_LIBS) \
	$(FFMPEG_LIBS)

DECODER_SRC = \
	src/decoder_buffer.c \
	src/decoder_list.c

if HAVE_MAD
DECODER_SRC += src/decoder/mad_plugin.c
endif

if HAVE_MPCDEC
DECODER_SRC += src/decoder/mpcdec_plugin.c
endif

if HAVE_WAVPACK
DECODER_SRC += src/decoder/wavpack_plugin.c
endif

if HAVE_FAAD
DECODER_SRC += src/decoder/faad_plugin.c
endif

if HAVE_MP4
DECODER_SRC += src/decoder/mp4ff_plugin.c
endif

if HAVE_OGG_COMMON
DECODER_SRC += src/decoder/_ogg_common.c
endif

if HAVE_FLAC_COMMON
DECODER_SRC += src/decoder/_flac_common.c
endif

if HAVE_OGGVORBIS
DECODER_SRC += src/decoder/vorbis_plugin.c
endif

if HAVE_FLAC
DECODER_SRC += src/decoder/flac_plugin.c
endif

if HAVE_OGGFLAC
DECODER_SRC += src/decoder/oggflac_plugin.c
endif

if HAVE_AUDIOFILE
DECODER_SRC += src/decoder/audiofile_plugin.c
endif

if HAVE_MIKMOD
DECODER_SRC += src/decoder/mikmod_plugin.c
endif

if HAVE_MODPLUG
DECODER_SRC += src/decoder/modplug_plugin.c
endif

if ENABLE_SIDPLAY
DECODER_SRC += src/decoder/sidplay_plugin.cxx
endif

if ENABLE_FLUIDSYNTH
DECODER_SRC += src/decoder/fluidsynth_plugin.c
endif

if ENABLE_WILDMIDI
DECODER_SRC += src/decoder/wildmidi_plugin.c
endif

if HAVE_FFMPEG
DECODER_SRC += src/decoder/ffmpeg_plugin.c
endif

# encoder plugins

ENCODER_CFLAGS = \
	$(VORBISENC_CFLAGS)

ENCODER_LIBS = \
	$(VORBISENC_LIBS)

ENCODER_SRC =

if ENABLE_ENCODER
ENCODER_SRC += src/encoder_list.c

if ENABLE_VORBIS_ENCODER
ENCODER_SRC += src/encoder/vorbis_encoder.c
endif

if ENABLE_LAME_ENCODER
ENCODER_SRC += src/encoder/lame_encoder.c
endif
endif


if HAVE_ZEROCONF
src_mpd_SOURCES += src/zeroconf.c

if HAVE_AVAHI
src_mpd_SOURCES += src/zeroconf-avahi.c
endif

if HAVE_BONJOUR
src_mpd_SOURCES += src/zeroconf-bonjour.c
endif
endif


#
# input plugins
#

INPUT_CFLAGS = \
	$(CURL_CFLAGS) \
	$(MMS_CFLAGS)

INPUT_LIBS = \
	$(CURL_LIBS) \
	$(MMS_LIBS)

INPUT_SRC = \
	src/input_stream.c \
	src/input/file_input_plugin.c

if HAVE_CURL
INPUT_SRC += src/input/curl_input_plugin.c src/icy_metadata.c
endif

if ENABLE_LASTFM
INPUT_SRC += src/input/lastfm_input_plugin.c
endif

if ENABLE_MMS
INPUT_SRC += src/input/mms_input_plugin.c
endif


OUTPUT_CFLAGS = \
	$(AO_CFLAGS) \
	$(ALSA_CFLAGS) \
	$(SHOUT_CFLAGS)

OUTPUT_LIBS = \
	$(AO_LIBS) \
	$(ALSA_LIBS) \
	$(SHOUT_LIBS)

OUTPUT_API_SRC = \
	src/output_list.c \
	src/output_all.c \
	src/output_thread.c \
	src/output_control.c \
	src/output_state.c \
	src/output_print.c \
	src/output_command.c \
	src/output_init.c

OUTPUT_SRC = \
	src/output/null_plugin.c

MIXER_SRC = \
	src/mixer_api.c

if HAVE_ALSA
OUTPUT_SRC += src/output/alsa_plugin.c
MIXER_SRC += src/mixer/alsa_mixer.c
endif

if HAVE_AO
OUTPUT_SRC += src/output/ao_plugin.c
endif

if HAVE_FIFO
OUTPUT_SRC += src/output/fifo_plugin.c
endif

if ENABLE_PIPE_OUTPUT
OUTPUT_SRC += src/output/pipe_output_plugin.c
endif

if HAVE_JACK
OUTPUT_SRC += src/output/jack_plugin.c
endif

if HAVE_MVP
OUTPUT_SRC += src/output/mvp_plugin.c
endif

if HAVE_OSS
OUTPUT_SRC += src/output/oss_plugin.c
MIXER_SRC += src/mixer/oss_mixer.c
endif

if HAVE_OSX
OUTPUT_SRC += src/output/osx_plugin.c
endif

if HAVE_PULSE
OUTPUT_SRC += src/output/pulse_plugin.c
MIXER_SRC += src/mixer/pulse_mixer.c
endif

if HAVE_SHOUT
OUTPUT_SRC += src/output/shout_plugin.c
endif


#
# Sparse code analysis
#
# sparse is a semantic parser
# URL: git://www.kernel.org/pub/scm/devel/sparse/sparse.git
#

SPARSE = sparse
SPARSE_FLAGS =
SPARSE_CPPFLAGS = $(DEFAULT_INCLUDES) \
	-I$(shell $(CC) -print-file-name=include) \
	-I$(shell $(CC) -print-file-name=include-fixed)
sparse-check:
	for i in $(src_mpd_SOURCES); \
	do \
		$(SPARSE) -I. $(src_mpd_CFLAGS) $(src_mpd_CPPFLAGS) $(SPARSE_FLAGS) $(SPARSE_CPPFLAGS) $(srcdir)/$$i || exit; \
	done

.PHONY: sparse-check


#
# Test programs
#

if ENABLE_TEST

noinst_PROGRAMS = \
	test/run_decoder \
	test/read_tags \
	test/run_encoder \
	test/run_output \
	test/software_volume

test_run_decoder_CPPFLAGS = $(AM_CPPFLAGS) \
	$(ID3TAG_CFLAGS) \
	$(INPUT_CFLAGS) $(DECODER_CFLAGS)
test_run_decoder_LDADD = $(MPD_LIBS) \
	$(ID3TAG_LIBS) \
	$(INPUT_LIBS) $(DECODER_LIBS) \
	$(GLIB_LIBS)
test_run_decoder_SOURCES = test/run_decoder.c \
	src/conf.c src/buffer2array.c src/utils.c src/log.c \
	src/tag.c src/tag_pool.c \
	src/replay_gain.c \
	src/uri.c \
	$(ARCHIVE_SRC) \
	$(INPUT_SRC) \
	$(DECODER_SRC)

test_read_tags_CPPFLAGS = $(AM_CPPFLAGS) \
	$(ID3TAG_CFLAGS) \
	$(INPUT_CFLAGS) $(DECODER_CFLAGS)
test_read_tags_LDADD = $(MPD_LIBS) \
	$(ID3TAG_LIBS) \
	$(INPUT_LIBS) $(DECODER_LIBS) \
	$(GLIB_LIBS)
test_read_tags_SOURCES = test/read_tags.c \
	src/conf.c src/buffer2array.c src/utils.c src/log.c \
	src/tag.c src/tag_pool.c src/tag_ape.c \
	src/replay_gain.c \
	src/uri.c \
	$(ARCHIVE_SRC) \
	$(INPUT_SRC) \
	$(DECODER_SRC)

test_run_encoder_SOURCES = test/run_encoder.c \
	src/conf.c src/buffer2array.c \
	src/utils.c \
	src/audio_parser.c \
	$(ENCODER_SRC)
test_run_encoder_LDADD = $(MPD_LIBS) \
	$(ENCODER_LIBS) \
	$(GLIB_LIBS)

test_software_volume_SOURCES = test/software_volume.c \
	src/audio_parser.c \
	src/pcm_volume.c

test_run_output_CPPFLAGS = $(AM_CPPFLAGS) \
	$(ENCODER_CFLAGS) \
	$(OUTPUT_CFLAGS)
test_run_output_LDADD = $(MPD_LIBS) \
	$(ENCODER_LIBS) \
	$(OUTPUT_LIBS) \
	$(GLIB_LIBS)
test_run_output_SOURCES = test/run_output.c \
	src/conf.c src/buffer2array.c src/utils.c src/log.c \
	src/audio_parser.c \
	src/timer.c \
	src/output_init.c src/output_list.c \
	$(ENCODER_SRC) \
	$(MIXER_SRC) \
	$(OUTPUT_SRC)

if HAVE_ID3TAG
test_run_decoder_SOURCES += src/tag_id3.c src/riff.c src/aiff.c
test_read_tags_SOURCES += src/tag_id3.c src/riff.c src/aiff.c
endif

endif


#
# Documentation
#

man_MANS = doc/mpd.1 doc/mpd.conf.5
doc_DATA = AUTHORS COPYING NEWS README TODO UPGRADING doc/mpdconf.example

if ENABLE_DOCUMENTATION
protocoldir = $(docdir)/protocol
protocol_DATA = $(wildcard doc/protocol/*.html)

if HAVE_XMLTO

DOCBOOK_FILES = doc/protocol.xml
DOCBOOK_HTML = $(patsubst %.xml,%/index.html,$(DOCBOOK_FILES))

$(DOCBOOK_HTML): %/index.html: %.xml
	$(XMLTO) -o $(@D) --stringparam chunker.output.encoding=utf-8 html $<

doc/api/html/index.html: doc/doxygen.conf
	$(DOXYGEN) $<

else

DOCBOOK_FILES =
DOCBOOK_HTML =

endif

all-local: $(DOCBOOK_HTML) doc/api/html/index.html

clean-local:
	rm -rf $(patsubst %.xml,%,$(DOCBOOK_FILES))
	rm -rf doc/api

install-data-local: doc/api/html/index.html
	$(mkinstalldirs) $(DESTDIR)$(docdir)/api/html
	$(INSTALL_DATA) -c -m 644 doc/api/html/*.html doc/api/html/*.css \
		doc/api/html/*.png doc/api/html/*.gif \
		$(DESTDIR)$(docdir)/api/html

endif


#
# Distribution
#

EXTRA_DIST = $(doc_DATA) autogen.sh \
	$(wildcard scripts/*.sh) scripts/mpd.spec \
	.gitignore \
	$(man_MANS) $(DOCBOOK_FILES) doc/mpdconf.example