1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
5 AUTOMAKE_OPTIONS = subdir-objects
13 BUILT_SOURCES = $(nodist_pluginsinclude_HEADERS)
14 CLEANFILES = $(BUILT_SOURCES)
16 SUFFIXES = .pc.in .pc .rc.in .rc
18 ###############################################################################
20 ###############################################################################
22 pluginsincludedir = $(pkgincludedir)/plugins
24 pluginsinclude_HEADERS = \
25 ../include/vlc_access.h \
26 ../include/vlc_actions.h \
27 ../include/vlc_addons.h \
28 ../include/vlc_aout.h \
29 ../include/vlc_aout_volume.h \
30 ../include/vlc_arrays.h \
31 ../include/vlc_atomic.h \
32 ../include/vlc_avcodec.h \
33 ../include/vlc_bits.h \
34 ../include/vlc_block.h \
35 ../include/vlc_block_helper.h \
36 ../include/vlc_boxes.h \
37 ../include/vlc_charset.h \
38 ../include/vlc_codec.h \
39 ../include/vlc_common.h \
40 ../include/vlc_config.h \
41 ../include/vlc_config_cat.h \
42 ../include/vlc_configuration.h \
43 ../include/vlc_cpu.h \
44 ../include/vlc_cxx_helpers.hpp \
45 ../include/vlc_dialog.h \
46 ../include/vlc_demux.h \
47 ../include/vlc_epg.h \
49 ../include/vlc_es_out.h \
50 ../include/vlc_events.h \
51 ../include/vlc_filter.h \
52 ../include/vlc_fourcc.h \
54 ../include/vlc_gcrypt.h \
55 ../include/vlc_opengl.h \
56 ../include/vlc_http.h \
57 ../include/vlc_httpd.h \
58 ../include/vlc_image.h \
59 ../include/vlc_inhibit.h \
60 ../include/vlc_input.h \
61 ../include/vlc_input_item.h \
62 ../include/vlc_interface.h \
63 ../include/vlc_keystore.h \
64 ../include/vlc_list.h \
65 ../include/vlc_md5.h \
66 ../include/vlc_messages.h \
67 ../include/vlc_meta.h \
68 ../include/vlc_meta_fetcher.h \
69 ../include/vlc_media_library.h \
70 ../include/vlc_memstream.h \
71 ../include/vlc_mime.h \
72 ../include/vlc_modules.h \
73 ../include/vlc_mouse.h \
74 ../include/vlc_network.h \
75 ../include/vlc_objects.h \
76 ../include/vlc_picture.h \
77 ../include/vlc_picture_fifo.h \
78 ../include/vlc_picture_pool.h \
79 ../include/vlc_playlist_legacy.h \
80 ../include/vlc_player.h \
81 ../include/vlc_playlist.h \
82 ../include/vlc_plugin.h \
83 ../include/vlc_probe.h \
84 ../include/vlc_rand.h \
85 ../include/vlc_services_discovery.h \
86 ../include/vlc_fingerprinter.h \
87 ../include/vlc_interrupt.h \
88 ../include/vlc_renderer_discovery.h \
89 ../include/vlc_sout.h \
90 ../include/vlc_spu.h \
91 ../include/vlc_stream.h \
92 ../include/vlc_stream_extractor.h \
93 ../include/vlc_strings.h \
94 ../include/vlc_subpicture.h \
95 ../include/vlc_text_style.h \
96 ../include/vlc_threads.h \
97 ../include/vlc_tick.h \
98 ../include/vlc_timestamp_helper.h \
99 ../include/vlc_thumbnailer.h \
100 ../include/vlc_tls.h \
101 ../include/vlc_url.h \
102 ../include/vlc_variables.h \
103 ../include/vlc_vector.h \
104 ../include/vlc_viewpoint.h \
105 ../include/vlc_vlm.h \
106 ../include/vlc_video_splitter.h \
107 ../include/vlc_vout.h \
108 ../include/vlc_vout_display.h \
109 ../include/vlc_vout_osd.h \
110 ../include/vlc_vout_window.h \
111 ../include/vlc_xml.h \
112 ../include/vlc_xlib.h \
114 nodist_pluginsinclude_HEADERS = ../include/vlc_about.h
117 ../include/vlc_codecs.h \
118 ../include/vlc_extensions.h \
119 ../include/vlc_fixups.h \
120 ../include/vlc_intf_strings.h \
121 ../include/vlc_iso_lang.h \
122 ../include/vlc_pgpkey.h \
123 ../include/vlc_update.h \
124 ../include/vlc_vod.h \
127 ../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
128 $(AM_V_at)rm -f -- "$@.tmp"
129 $(AM_V_at)mkdir -p -- ../include
130 $(AM_V_GEN)(echo "/* Automatically generated file - DO NOT EDIT */" && \
131 echo "static const char psz_license[] =" && \
132 sed 's/"/\\"/g;s/^.*$$/\"&\\n\"/' "$(top_srcdir)/COPYING" && \
134 echo "static const char psz_thanks[] =" && \
135 sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
136 "$(top_srcdir)/THANKS" && \
138 echo "static const char psz_authors[] =" && \
139 sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
140 "$(top_srcdir)/AUTHORS" && \
141 echo ";") >> "$@.tmp"
142 $(AM_V_at)mv -f -- "$@.tmp" "$@"
144 ###############################################################################
145 # pkg-config integration
146 ###############################################################################
148 pkgconfigdir = $(libdir)/pkgconfig
149 pkgconfig_DATA = vlc-plugin.pc
150 CLEANFILES += $(pkgconfig_DATA)
152 .pc.in.pc: $(top_builddir)/config.status
153 $(AM_V_GEN)cd "$(top_builddir)" && \
154 $(SHELL) ./config.status --file="src/$@"
156 ##############################################################################
157 # Windows resource files
158 ##############################################################################
161 noinst_DATA = libvlc_win32_rc.rc
163 EXTRA_DIST += libvlc_win32_rc.rc.in
165 .rc.in.rc: $(top_builddir)/config.status
166 cd "$(top_builddir)" && \
167 $(SHELL) ./config.status --file="src/$@"
169 ###############################################################################
171 ###############################################################################
173 lib_LTLIBRARIES = libvlccore.la
175 AM_CPPFLAGS = $(INCICONV) $(IDN_CFLAGS) \
176 -DMODULE_STRING=\"core\" \
177 -DSYSDATADIR=\"$(datadir)\" \
178 -DLIBDIR=\"$(libdir)\" \
179 -DLIBEXECDIR=\"$(libexecdir)\" \
180 -DLOCALEDIR=\"$(localedir)\" \
181 -DPKGDATADIR=\"$(pkgdatadir)\" \
182 -DPKGLIBDIR=\"$(pkglibdir)\" \
183 -DPKGLIBEXECDIR=\"$(pkglibexecdir)\"
184 AM_CFLAGS = $(CFLAGS_libvlccore)
185 if HAVE_DYNAMIC_PLUGINS
186 AM_CPPFLAGS += -DHAVE_DYNAMIC_PLUGINS
189 AM_CPPFLAGS += -DHAVE_DBUS
190 AM_CFLAGS += $(DBUS_CFLAGS)
193 libvlccore_la_SOURCES = \
200 config/configuration.h \
208 config/vlc_getopt.h \
215 modules/textdomain.c \
217 interface/interface.c \
218 playlist_legacy/playlist_internal.h \
219 playlist_legacy/aout.c \
220 playlist_legacy/thread.c \
221 playlist_legacy/control.c \
222 playlist_legacy/engine.c \
223 playlist_legacy/sort.c \
224 playlist_legacy/loadsave.c \
225 playlist_legacy/tree.c \
226 playlist_legacy/item.c \
227 playlist_legacy/search.c \
228 playlist_legacy/services_discovery.c \
229 playlist_legacy/renderer.c \
240 playlist/playlist.c \
241 playlist/playlist.h \
242 playlist/preparse.c \
243 playlist/preparse.h \
244 playlist/randomizer.c \
245 playlist/randomizer.h \
251 preparser/fetcher.c \
252 preparser/fetcher.h \
253 preparser/preparser.c \
254 preparser/preparser.h \
257 clock/clock_internal.c \
258 clock/input_clock.c \
262 input/demux_chained.c \
264 input/es_out_timeshift.c \
270 clock/input_clock.h \
271 clock/clock_internal.h \
275 input/es_out_timeshift.h \
278 input/mrl_helpers.h \
280 input/input_internal.h \
281 input/input_interface.h \
282 input/vlm_internal.h \
286 input/services_discovery.c \
289 input/stream_fifo.c \
290 input/stream_extractor.c \
291 input/stream_filter.c \
292 input/stream_memory.c \
294 input/thumbnailer.c \
296 audio_output/aout_internal.h \
297 audio_output/common.c \
299 audio_output/filters.c \
300 audio_output/output.c \
301 audio_output/volume.c \
302 video_output/chrono.h \
303 video_output/control.c \
304 video_output/control.h \
305 video_output/display.c \
306 video_output/display.h \
307 video_output/inhibit.c \
308 video_output/inhibit.h \
309 video_output/interlacing.c \
310 video_output/interlacing.h \
311 video_output/snapshot.c \
312 video_output/snapshot.h \
313 video_output/statistic.h \
314 video_output/video_output.c \
315 video_output/video_text.c \
316 video_output/video_epg.c \
317 video_output/video_widgets.c \
318 video_output/vout_subpictures.c \
319 video_output/vout_spuregion_helper.h \
320 video_output/vout_wrapper.h \
321 video_output/window.c \
322 video_output/window.h \
323 video_output/opengl.c \
324 video_output/vout_intf.c \
325 video_output/vout_internal.h \
326 video_output/vout_wrapper.c \
327 network/getaddrinfo.c \
328 network/http_auth.c \
345 misc/background_worker.c \
346 misc/background_worker.h \
358 misc/picture_fifo.c \
359 misc/picture_pool.c \
363 misc/renderer_discovery.c \
380 misc/filter_chain.c \
382 misc/fingerprinter.c \
387 libvlccore_la_LIBADD = $(LIBS_libvlccore) \
388 ../compat/libcompat.la \
389 $(LTLIBINTL) $(LTLIBICONV) \
390 $(IDN_LIBS) $(SOCKET_LIBS) $(LIBRT) $(LIBDL) $(LIBM)
393 libvlccore_la_SOURCES += \
404 libvlccore_la_SOURCES += posix/timer.c
406 libvlccore_la_SOURCES += win32/timer.c
410 libvlccore_la_SOURCES += \
422 libvlccore_la_SOURCES += \
431 libvlccore_la_SOURCES += \
437 libvlccore_la_SOURCES += \
446 libvlccore_la_SOURCES += \
452 libvlccore_objc_la_SOURCES = \
454 noinst_LTLIBRARIES = libvlccore_objc.la
456 libvlccore_la_SOURCES += \
464 libvlccore_la_SOURCES += \
471 libvlccore_la_SOURCES += \
473 libvlccore_la_LIBADD += -lanl
475 libvlccore_la_SOURCES += \
485 libvlccore_la_SOURCES += \
486 stream_output/sap.c stream_output/sdp.c \
487 stream_output/stream_output.c stream_output/stream_output.h
489 libvlccore_la_SOURCES += input/vlm.c input/vlm_event.c input/vlmshell.c
494 libvlccore_la_SOURCES += \
495 misc/update.h misc/update.c \
497 AM_CPPFLAGS += -DUPDATE_CHECK
498 AM_CFLAGS += $(GCRYPT_CFLAGS)
499 libvlccore_la_LIBADD += $(GCRYPT_LIBS)
502 libvlccore_la_LDFLAGS = \
503 $(LDFLAGS_libvlccore) \
505 -export-symbols $(srcdir)/libvlccore.sym \
507 libvlccore_la_DEPENDENCIES = libvlccore.sym
509 libvlccore_la_DEPENDENCIES += libvlc_win32_rc.$(OBJEXT)
510 libvlccore_la_LDFLAGS += -Wl,libvlc_win32_rc.$(OBJEXT) -avoid-version -Wc,-static $(LIBCOM)
513 libvlccore_la_LDFLAGS += -avoid-version
516 libvlccore_la_LIBADD += $(DBUS_LIBS)
519 $(libvlccore_la_OBJECTS): libvlccore_objc.la
520 libvlccore_objc_la_OBJCFLAGS = $(AM_OBJCFLAGS) -fobjc-arc
521 libvlccore_objc_la_LDFLAGS = -static
522 libvlccore_la_LIBADD += libvlccore_objc.la
523 libvlccore_la_LDFLAGS += -Wl,-framework,Foundation -Xlinker -install_name -Xlinker @rpath/libvlccore.dylib
526 libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc $(top_srcdir)/extras/package/win32/libvlc.dll.manifest
527 $(WINDRES) --include-dir $(top_srcdir)/share --include-dir $(top_srcdir)/extras/package/win32 -i $< -o $@
530 BUILT_SOURCES += fourcc_tables.h
531 EXTRA_DIST += misc/fourcc_gen.c
532 MOSTLYCLEANFILES = fourcc_gen$(BUILDEXEEXT)
534 fourcc_gen$(BUILDEXEEXT): misc/fourcc_gen.c misc/fourcc_list.h ../include/vlc_fourcc.h
535 $(AM_V_at)rm -f -- $@
536 $(AM_V_CC)$(BUILDCC) -I$(srcdir) -o $@ $<
538 fourcc_tables.h: fourcc_gen$(BUILDEXEEXT)
539 $(AM_V_at)rm -f -- $@.tmp
540 $(AM_V_GEN)$(builddir)/fourcc_gen$(BUILDEXEEXT) > $@.tmp
541 $(AM_V_at)mv -f -- $@.tmp $@
543 # Unit/regression tests
562 test_shared_data_ptr \
566 TESTS = $(check_PROGRAMS) check_symbols
568 test_block_SOURCES = test/block_test.c
569 test_block_LDADD = $(LDADD) $(LIBS_libvlccore)
570 test_block_DEPENDENCIES =
572 test_dictionary_SOURCES = test/dictionary.c
573 test_i18n_atof_SOURCES = test/i18n_atof.c
574 test_interrupt_SOURCES = test/interrupt.c
575 test_interrupt_LDADD = $(LDADD) $(LIBS_libvlccore)
576 test_list_SOURCES = test/list.c
577 test_md5_SOURCES = test/md5.c
578 test_picture_pool_SOURCES = test/picture_pool.c
579 test_sort_SOURCES = test/sort.c
580 test_timer_SOURCES = test/timer.c
581 test_url_SOURCES = test/url.c
582 test_utf8_SOURCES = test/utf8.c
583 test_xmlent_SOURCES = test/xmlent.c
584 test_headers_SOURCES = test/headers.c
585 test_mrl_helpers_SOURCES = test/mrl_helpers.c
586 test_arrays_SOURCES = test/arrays.c
587 test_vector_SOURCES = test/vector.c
588 test_shared_data_ptr_SOURCES = test/shared_data_ptr.cpp
589 test_playlist_SOURCES = playlist/test.c \
595 playlist/playlist.c \
596 playlist/preparse.c \
597 playlist/randomizer.c \
601 test_playlist_CFLAGS = -DTEST_PLAYLIST
602 test_randomizer_SOURCES = playlist/randomizer.c
603 test_randomizer_CFLAGS = -DTEST_RANDOMIZER
605 AM_LDFLAGS = -no-install
606 LDADD = libvlccore.la \
607 ../compat/libcompat.la
609 ###############################################################################
611 ###############################################################################
613 BUILT_SOURCES += stamp-revision
614 MAINTAINERCLEANFILES = $(srcdir)/revision.txt $(srcdir)/revision.c
616 $(srcdir)/revision.c: $(srcdir)/revision.txt
617 $(AM_V_at)rm -f -- $@
618 $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat $<)\";" \
621 $(srcdir)/revision.txt:
622 $(AM_V_at)$(MAKE) stamp-revision
626 $(AM_V_at)rm -f -- revision.tmp
627 $(AM_V_GEN)if ! git \
628 --git-dir="$(top_srcdir)/.git" describe \
629 --tags --long --match '?.*.*' --always; then \
630 cat $(srcdir)/revision.txt ; \
632 $(AM_V_at)if diff revision.tmp $(srcdir)/revision.txt >/dev/null 2>&1; then \
633 rm -f -- revision.tmp; \
635 mv -f -- revision.tmp $(srcdir)/revision.txt; \
639 ###############################################################################
640 # Unit/regression test
641 ###############################################################################
643 dist_check_SCRIPTS = check_headers check_symbols
646 for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
648 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
649 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
651 echo "Header $$h not included in test/headers.c!"; \
655 $(SHELL) $(srcdir)/check_headers $(pluginsinclude_HEADERS)
658 @echo "Generated source cannot be phony. Go away." >&2