VT: only use hw decoding unless explicitely requested
[vlc.git] / src / Makefile.am
blob87ea540f69fe2c56c79d19b58ea3181e369cf1c1
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
5 AUTOMAKE_OPTIONS = subdir-objects
7 NULL =
8 EXTRA_DIST = \
9         vlc-plugin.pc.in \
10         libvlccore.sym \
11         revision.txt
13 BUILT_SOURCES = $(nodist_pluginsinclude_HEADERS)
14 CLEANFILES = $(BUILT_SOURCES)
16 SUFFIXES = .pc.in .pc .rc.in .rc
18 ###############################################################################
19 # Headers
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_dialog.h \
45         ../include/vlc_demux.h \
46         ../include/vlc_epg.h \
47         ../include/vlc_es.h \
48         ../include/vlc_es_out.h \
49         ../include/vlc_events.h \
50         ../include/vlc_filter.h \
51         ../include/vlc_fourcc.h \
52         ../include/vlc_fs.h \
53         ../include/vlc_gcrypt.h \
54         ../include/vlc_opengl.h \
55         ../include/vlc_http.h \
56         ../include/vlc_httpd.h \
57         ../include/vlc_image.h \
58         ../include/vlc_inhibit.h \
59         ../include/vlc_input.h \
60         ../include/vlc_input_item.h \
61         ../include/vlc_interface.h \
62         ../include/vlc_keystore.h \
63         ../include/vlc_main.h \
64         ../include/vlc_md5.h \
65         ../include/vlc_messages.h \
66         ../include/vlc_meta.h \
67         ../include/vlc_meta_fetcher.h \
68         ../include/vlc_media_library.h \
69         ../include/vlc_memstream.h \
70         ../include/vlc_mime.h \
71         ../include/vlc_modules.h \
72         ../include/vlc_mouse.h \
73         ../include/vlc_mtime.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.h \
80         ../include/vlc_plugin.h \
81         ../include/vlc_probe.h \
82         ../include/vlc_rand.h \
83         ../include/vlc_services_discovery.h \
84         ../include/vlc_fingerprinter.h \
85         ../include/vlc_interrupt.h \
86         ../include/vlc_renderer_discovery.h \
87         ../include/vlc_sout.h \
88         ../include/vlc_spu.h \
89         ../include/vlc_stream.h \
90         ../include/vlc_stream_extractor.h \
91         ../include/vlc_strings.h \
92         ../include/vlc_subpicture.h \
93         ../include/vlc_text_style.h \
94         ../include/vlc_threads.h \
95         ../include/vlc_tls.h \
96         ../include/vlc_url.h \
97         ../include/vlc_variables.h \
98         ../include/vlc_viewpoint.h \
99         ../include/vlc_vlm.h \
100         ../include/vlc_video_splitter.h \
101         ../include/vlc_vout.h \
102         ../include/vlc_vout_display.h \
103         ../include/vlc_vout_osd.h \
104         ../include/vlc_vout_window.h \
105         ../include/vlc_xml.h \
106         ../include/vlc_xlib.h \
107         $(NULL)
108 nodist_pluginsinclude_HEADERS = ../include/vlc_about.h
110 noinst_HEADERS = \
111         ../include/vlc_codecs.h \
112         ../include/vlc_extensions.h \
113         ../include/vlc_fixups.h \
114         ../include/vlc_intf_strings.h \
115         ../include/vlc_iso_lang.h \
116         ../include/vlc_memory.h \
117         ../include/vlc_pgpkey.h \
118         ../include/vlc_update.h \
119         ../include/vlc_vod.h \
120         ../include/vlc_vout_wrapper.h \
121         $(NULL)
123 ../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
124         $(AM_V_at)rm -f -- "$@.tmp"
125         $(AM_V_at)mkdir -p -- ../include
126         $(AM_V_GEN)(echo "/* Automatically generated file - DO NOT EDIT */" && \
127         echo "static const char psz_license[] =" && \
128         sed 's/"/\\"/g;s/^.*$$/\"&\\n\"/' "$(top_srcdir)/COPYING" && \
129         echo ";" && \
130         echo "static const char psz_thanks[] =" && \
131         sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
132                 "$(top_srcdir)/THANKS" && \
133         echo ";" && \
134         echo "static const char psz_authors[] =" && \
135         sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
136                 "$(top_srcdir)/AUTHORS" && \
137         echo ";") >> "$@.tmp"
138         $(AM_V_at)mv -f -- "$@.tmp" "$@"
140 ###############################################################################
141 # pkg-config integration
142 ###############################################################################
144 pkgconfigdir = $(libdir)/pkgconfig
145 pkgconfig_DATA = vlc-plugin.pc
146 CLEANFILES += $(pkgconfig_DATA)
148 .pc.in.pc: $(top_builddir)/config.status
149         $(AM_V_GEN)cd "$(top_builddir)" && \
150         $(SHELL) ./config.status --file="src/$@"
152 ##############################################################################
153 # Windows resource files
154 ##############################################################################
156 if HAVE_WIN32
157 noinst_DATA = libvlc_win32_rc.rc
158 endif
159 EXTRA_DIST += libvlc_win32_rc.rc.in
161 .rc.in.rc: $(top_builddir)/config.status
162         cd "$(top_builddir)" && \
163         $(SHELL) ./config.status --file="src/$@"
165 ###############################################################################
166 # Building libvlc
167 ###############################################################################
169 lib_LTLIBRARIES = libvlccore.la
171 AM_CPPFLAGS = $(INCICONV) $(IDN_CFLAGS) \
172         -DMODULE_STRING=\"core\" \
173         -DLOCALEDIR=\"$(localedir)\" \
174         -DPKGDATADIR=\"$(vlcdatadir)\" \
175         -DPKGLIBDIR=\"$(vlclibdir)\"
176 AM_CFLAGS = $(CFLAGS_libvlccore)
177 if HAVE_DYNAMIC_PLUGINS
178 AM_CPPFLAGS += -DHAVE_DYNAMIC_PLUGINS
179 endif
180 if HAVE_DBUS
181 AM_CPPFLAGS += -DHAVE_DBUS
182 AM_CFLAGS += $(DBUS_CFLAGS)
183 endif
185 libvlccore_la_SOURCES = \
186         libvlc.c \
187         libvlc.h \
188         libvlc-module.c \
189         missing.c \
190         revision.c \
191         version.c \
192         config/configuration.h \
193         config/core.c \
194         config/chain.c \
195         config/file.c \
196         config/help.c \
197         config/intf.c \
198         config/cmdline.c \
199         config/getopt.c \
200         config/vlc_getopt.h \
201         extras/libc.c \
202         extras/tdestroy.c \
203         modules/modules.h \
204         modules/modules.c \
205         modules/bank.c \
206         modules/cache.c \
207         modules/entry.c \
208         modules/textdomain.c \
209         interface/dialog.c \
210         interface/interface.c \
211         playlist/playlist_internal.h \
212         playlist/art.c \
213         playlist/art.h \
214         playlist/aout.c \
215         playlist/thread.c \
216         playlist/control.c \
217         playlist/engine.c \
218         playlist/fetcher.c \
219         playlist/fetcher.h \
220         playlist/sort.c \
221         playlist/loadsave.c \
222         playlist/preparser.c \
223         playlist/preparser.h \
224         playlist/tree.c \
225         playlist/item.c \
226         playlist/search.c \
227         playlist/services_discovery.c \
228         playlist/renderer.c \
229         input/item.c \
230         input/access.c \
231         input/clock.c \
232         input/control.c \
233         input/decoder.c \
234         input/demux.c \
235         input/demux_chained.c \
236         input/es_out.c \
237         input/es_out_timeshift.c \
238         input/event.c \
239         input/input.c \
240         input/info.h \
241         input/meta.c \
242         input/clock.h \
243         input/decoder.h \
244         input/demux.h \
245         input/es_out.h \
246         input/es_out_timeshift.h \
247         input/event.h \
248         input/item.h \
249         input/mrl_helpers.h \
250         input/stream.h \
251         input/input_internal.h \
252         input/input_interface.h \
253         input/vlm_internal.h \
254         input/vlm_event.h \
255         input/resource.h \
256         input/resource.c \
257         input/services_discovery.c \
258         input/stats.c \
259         input/stream.c \
260         input/stream_fifo.c \
261         input/stream_extractor.c \
262         input/stream_filter.c \
263         input/stream_memory.c \
264         input/subtitles.c \
265         input/var.c \
266         audio_output/aout_internal.h \
267         audio_output/common.c \
268         audio_output/dec.c \
269         audio_output/filters.c \
270         audio_output/output.c \
271         audio_output/volume.c \
272         video_output/chrono.h \
273         video_output/control.c \
274         video_output/control.h \
275         video_output/display.c \
276         video_output/display.h \
277         video_output/event.h \
278         video_output/inhibit.c \
279         video_output/inhibit.h \
280         video_output/interlacing.c \
281         video_output/interlacing.h \
282         video_output/snapshot.c \
283         video_output/snapshot.h \
284         video_output/statistic.h \
285         video_output/video_output.c \
286         video_output/video_text.c \
287         video_output/video_epg.c \
288         video_output/video_widgets.c \
289         video_output/vout_subpictures.c \
290         video_output/vout_spuregion_helper.h \
291         video_output/window.c \
292         video_output/window.h \
293         video_output/opengl.c \
294         video_output/vout_intf.c \
295         video_output/vout_internal.h \
296         video_output/vout_control.h \
297         video_output/vout_wrapper.c \
298         network/getaddrinfo.c \
299         network/http_auth.c \
300         network/httpd.c \
301         network/io.c \
302         network/tcp.c \
303         network/udp.c \
304         network/rootbind.c \
305         network/tls.c \
306         text/charset.c \
307         text/memstream.c \
308         text/strings.c \
309         text/unicode.c \
310         text/url.c \
311         text/filesystem.c \
312         text/iso_lang.c \
313         text/iso-639_def.h \
314         misc/actions.c \
315         misc/background_worker.c \
316         misc/background_worker.h \
317         misc/md5.c \
318         misc/probe.c \
319         misc/rand.c \
320         misc/mtime.c \
321         misc/block.c \
322         misc/fifo.c \
323         misc/fourcc.c \
324         misc/fourcc_list.h \
325         misc/es_format.c \
326         misc/picture.c \
327         misc/picture.h \
328         misc/picture_fifo.c \
329         misc/picture_pool.c \
330         misc/interrupt.h \
331         misc/interrupt.c \
332         misc/keystore.c \
333         misc/renderer_discovery.c \
334         misc/threads.c \
335         misc/cpu.c \
336         misc/epg.c \
337         misc/exit.c \
338         misc/events.c \
339         misc/image.c \
340         misc/messages.c \
341         misc/mime.c \
342         misc/objects.c \
343         misc/objres.c \
344         misc/variables.h \
345         misc/variables.c \
346         misc/error.c \
347         misc/xml.c \
348         misc/addons.c \
349         misc/filter.c \
350         misc/filter_chain.c \
351         misc/httpcookies.c \
352         misc/fingerprinter.c \
353         misc/text_style.c \
354         misc/subpicture.c \
355         misc/subpicture.h
356 libvlccore_la_LIBADD = $(LIBS_libvlccore) \
357         ../compat/libcompat.la \
358         $(LTLIBINTL) $(LTLIBICONV) \
359         $(IDN_LIBS) $(LIBPTHREAD) $(SOCKET_LIBS) $(LIBRT) $(LIBDL) $(LIBM)
361 if HAVE_WIN32
362 libvlccore_la_SOURCES += \
363         win32/dirs.c \
364         win32/error.c \
365         win32/filesystem.c \
366         win32/netconf.c \
367         win32/plugin.c \
368         win32/rand.c \
369         win32/specific.c \
370         win32/thread.c \
371         win32/winsock.c
372 if HAVE_WINSTORE
373 libvlccore_la_SOURCES += posix/timer.c
374 else
375 libvlccore_la_SOURCES += win32/timer.c
376 endif
377 else
378 if HAVE_OS2
379 libvlccore_la_SOURCES += \
380         os2/dirs.c \
381         darwin/error.c \
382         os2/filesystem.c \
383         os2/getaddrinfo.c \
384         os2/netconf.c \
385         os2/plugin.c \
386         os2/specific.c \
387         os2/rand.c \
388         os2/thread.c
389 else
390 if HAVE_NACL
391 libvlccore_la_SOURCES += \
392         android/error.c \
393         posix/dirs.c \
394         posix/filesystem.c \
395         posix/netconf.c \
396         posix/rand.c \
397         posix/specific.c \
398         posix/timer.c
399 else
400 libvlccore_la_SOURCES += \
401         posix/filesystem.c \
402         posix/plugin.c \
403         posix/rand.c \
404         posix/timer.c
405 if HAVE_ANDROID
406 libvlccore_la_SOURCES += \
407         android/error.c \
408         android/specific.c \
409         android/thread.c \
410         linux/cpu.c \
411         linux/dirs.c \
412         linux/thread.c
413 else
414 if HAVE_DARWIN
415 libvlccore_la_SOURCES += \
416         darwin/dirs.c \
417         darwin/error.c \
418         darwin/netconf.c \
419         darwin/specific.c \
420         darwin/thread.c
421 else
422 libvlccore_la_SOURCES += \
423         posix/dirs.c \
424         posix/error.c \
425         posix/netconf.c \
426         posix/specific.c \
427         posix/thread.c
428 if HAVE_LINUX
429 libvlccore_la_SOURCES += \
430         linux/cpu.c \
431         linux/dirs.c \
432         linux/getaddrinfo.c \
433         linux/thread.c
434 libvlccore_la_LIBADD += -lanl
435 else
436 libvlccore_la_SOURCES += \
437         posix/getaddrinfo.c
438 endif
439 endif
440 endif
441 endif
442 endif
443 endif
445 if ENABLE_SOUT
446 libvlccore_la_SOURCES += \
447         stream_output/sap.c stream_output/sdp.c \
448         stream_output/stream_output.c stream_output/stream_output.h
449 if ENABLE_VLM
450 libvlccore_la_SOURCES += input/vlm.c input/vlm_event.c input/vlmshell.c
451 endif
452 endif
454 if UPDATE_CHECK
455 libvlccore_la_SOURCES += \
456         misc/update.h misc/update.c \
457         misc/update_crypto.c
458 AM_CPPFLAGS += -DUPDATE_CHECK
459 AM_CFLAGS += $(GCRYPT_CFLAGS)
460 libvlccore_la_LIBADD += $(GCRYPT_LIBS)
461 endif
463 libvlccore_la_LDFLAGS = \
464         $(LDFLAGS_libvlccore) \
465         -no-undefined \
466         -export-symbols $(srcdir)/libvlccore.sym \
467         -version-info 8:0:0
468 libvlccore_la_DEPENDENCIES = libvlccore.sym
469 if HAVE_WIN32
470 libvlccore_la_DEPENDENCIES += libvlc_win32_rc.$(OBJEXT)
471 libvlccore_la_LDFLAGS += -Wl,libvlc_win32_rc.$(OBJEXT) -avoid-version -Wc,-static $(LIBCOM)
472 endif
473 if HAVE_OS2
474 libvlccore_la_LDFLAGS += -avoid-version
475 endif
476 if HAVE_DBUS
477 libvlccore_la_LIBADD += $(DBUS_LIBS)
478 endif
479 if HAVE_DARWIN
480 libvlccore_la_LDFLAGS += -Xlinker -install_name -Xlinker @rpath/libvlccore.dylib
481 endif
483 libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc $(top_srcdir)/extras/package/win32/libvlc.dll.manifest
484         $(WINDRES) --include-dir $(top_srcdir)/share --include-dir $(top_srcdir)/extras/package/win32 -i $< -o $@
486 # FourCC tables
487 BUILT_SOURCES += fourcc_tables.h
488 EXTRA_DIST += misc/fourcc_gen.c
489 MOSTLYCLEANFILES = fourcc_gen$(BUILDEXEEXT)
491 fourcc_gen$(BUILDEXEEXT): misc/fourcc_gen.c misc/fourcc_list.h ../include/vlc_fourcc.h
492         $(AM_V_at)rm -f -- $@
493         $(AM_V_CC)$(BUILDCC) -I$(srcdir) -o $@ $<
495 fourcc_tables.h: fourcc_gen$(BUILDEXEEXT)
496         $(AM_V_at)rm -f -- $@.tmp
497         $(AM_V_GEN)$(builddir)/fourcc_gen$(BUILDEXEEXT) > $@.tmp
498         $(AM_V_at)mv -f -- $@.tmp $@
500 # Unit/regression tests
502 check_PROGRAMS = \
503         test_block \
504         test_dictionary \
505         test_i18n_atof \
506         test_interrupt \
507         test_md5 \
508         test_picture_pool \
509         test_sort \
510         test_timer \
511         test_url \
512         test_utf8 \
513         test_xmlent \
514         test_headers \
515         test_mrl_helpers
517 TESTS = $(check_PROGRAMS) check_symbols
519 test_block_SOURCES = test/block_test.c
520 test_block_LDADD = $(LDADD) $(LIBS_libvlccore)
521 test_block_DEPENDENCIES =
523 test_dictionary_SOURCES = test/dictionary.c
524 test_i18n_atof_SOURCES = test/i18n_atof.c
525 test_interrupt_SOURCES = test/interrupt.c
526 test_interrupt_LDADD = $(LDADD) $(LIBS_libvlccore) $(LIBPTHREAD)
527 test_md5_SOURCES = test/md5.c
528 test_picture_pool_SOURCES = test/picture_pool.c
529 test_sort_SOURCES = test/sort.c
530 test_timer_SOURCES = test/timer.c
531 test_url_SOURCES = test/url.c
532 test_utf8_SOURCES = test/utf8.c
533 test_xmlent_SOURCES = test/xmlent.c
534 test_headers_SOURCES = test/headers.c
535 test_mrl_helpers_SOURCES = test/mrl_helpers.c
537 AM_LDFLAGS = -no-install
538 LDADD = libvlccore.la \
539         ../compat/libcompat.la
541 ###############################################################################
542 # GIT revision
543 ###############################################################################
545 BUILT_SOURCES += stamp-revision
546 MAINTAINERCLEANFILES = $(srcdir)/revision.txt $(srcdir)/revision.c
548 $(srcdir)/revision.c: $(srcdir)/revision.txt
549         $(AM_V_at)rm -f -- $@
550         $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat $<)\";" \
551                 > $@
553 $(srcdir)/revision.txt:
554         $(AM_V_at)$(MAKE) stamp-revision
555         $(AM_V_GEN)touch $@
557 stamp-revision:
558         $(AM_V_at)rm -f -- revision.tmp
559         $(AM_V_GEN)if ! git \
560                         --git-dir="$(top_srcdir)/.git/" describe \
561                         --tags --long --match '?.*.*' --always; then \
562                 cat $(srcdir)/revision.txt ; \
563         fi > revision.tmp
564         $(AM_V_at)if diff revision.tmp $(srcdir)/revision.txt >/dev/null 2>&1; then \
565                 rm -f -- revision.tmp; \
566         else \
567                 mv -f -- revision.tmp $(srcdir)/revision.txt; \
568         fi
569 #2>&1
571 ###############################################################################
572 # Unit/regression test
573 ###############################################################################
575 dist_check_SCRIPTS = check_headers check_symbols
577 check-local:
578         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
579         do \
580                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
581                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
582                 then \
583                         echo "Header $$h not included in test/headers.c!"; \
584                         exit 1; \
585                 fi ; \
586         done
587         $(SHELL) $(srcdir)/check_headers $(pluginsinclude_HEADERS)
589 FORCE:
590         @echo "Generated source cannot be phony. Go away." >&2
591         @exit 1
593 .PHONY: FORCE