macOS buildsystem: Adjust rpath and install_name
[vlc.git] / src / Makefile.am
blobfc63678cfa7f9156b2e795d1664222cfcb0681b5
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_addons.h \
27         ../include/vlc_aout.h \
28         ../include/vlc_aout_volume.h \
29         ../include/vlc_arrays.h \
30         ../include/vlc_atomic.h \
31         ../include/vlc_avcodec.h \
32         ../include/vlc_bits.h \
33         ../include/vlc_block.h \
34         ../include/vlc_block_helper.h \
35         ../include/vlc_boxes.h \
36         ../include/vlc_charset.h \
37         ../include/vlc_codec.h \
38         ../include/vlc_common.h \
39         ../include/vlc_config.h \
40         ../include/vlc_config_cat.h \
41         ../include/vlc_configuration.h \
42         ../include/vlc_cpu.h \
43         ../include/vlc_dialog.h \
44         ../include/vlc_demux.h \
45         ../include/vlc_epg.h \
46         ../include/vlc_es.h \
47         ../include/vlc_es_out.h \
48         ../include/vlc_events.h \
49         ../include/vlc_filter.h \
50         ../include/vlc_fourcc.h \
51         ../include/vlc_fs.h \
52         ../include/vlc_gcrypt.h \
53         ../include/vlc_opengl.h \
54         ../include/vlc_http.h \
55         ../include/vlc_httpd.h \
56         ../include/vlc_image.h \
57         ../include/vlc_inhibit.h \
58         ../include/vlc_input.h \
59         ../include/vlc_input_item.h \
60         ../include/vlc_interface.h \
61         ../include/vlc_keys.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_vlm.h \
99         ../include/vlc_video_splitter.h \
100         ../include/vlc_vout.h \
101         ../include/vlc_vout_display.h \
102         ../include/vlc_vout_osd.h \
103         ../include/vlc_vout_window.h \
104         ../include/vlc_xml.h \
105         ../include/vlc_xlib.h \
106         $(NULL)
107 nodist_pluginsinclude_HEADERS = ../include/vlc_about.h
109 noinst_HEADERS = \
110         ../include/vlc_codec_synchro.h \
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/keys.c \
199         config/cmdline.c \
200         config/getopt.c \
201         config/vlc_getopt.h \
202         extras/libc.c \
203         extras/tdestroy.c \
204         modules/modules.h \
205         modules/modules.c \
206         modules/bank.c \
207         modules/cache.c \
208         modules/entry.c \
209         modules/textdomain.c \
210         interface/dialog.c \
211         interface/interface.c \
212         playlist/playlist_internal.h \
213         playlist/art.c \
214         playlist/art.h \
215         playlist/aout.c \
216         playlist/thread.c \
217         playlist/control.c \
218         playlist/engine.c \
219         playlist/fetcher.c \
220         playlist/fetcher.h \
221         playlist/sort.c \
222         playlist/loadsave.c \
223         playlist/preparser.c \
224         playlist/preparser.h \
225         playlist/tree.c \
226         playlist/item.c \
227         playlist/search.c \
228         playlist/services_discovery.c \
229         input/item.c \
230         input/access.c \
231         input/clock.c \
232         input/control.c \
233         input/decoder.c \
234         input/decoder_synchro.c \
235         input/demux.c \
236         input/demux_chained.c \
237         input/es_out.c \
238         input/es_out_timeshift.c \
239         input/event.c \
240         input/input.c \
241         input/info.h \
242         input/meta.c \
243         input/clock.h \
244         input/decoder.h \
245         input/demux.h \
246         input/es_out.h \
247         input/es_out_timeshift.h \
248         input/event.h \
249         input/item.h \
250         input/mrl_helpers.h \
251         input/stream.h \
252         input/input_internal.h \
253         input/input_interface.h \
254         input/vlm_internal.h \
255         input/vlm_event.h \
256         input/resource.h \
257         input/resource.c \
258         input/services_discovery.c \
259         input/stats.c \
260         input/stream.c \
261         input/stream_fifo.c \
262         input/stream_extractor.c \
263         input/stream_filter.c \
264         input/stream_memory.c \
265         input/subtitles.c \
266         input/var.c \
267         audio_output/aout_internal.h \
268         audio_output/common.c \
269         audio_output/dec.c \
270         audio_output/filters.c \
271         audio_output/output.c \
272         audio_output/volume.c \
273         video_output/chrono.h \
274         video_output/control.c \
275         video_output/control.h \
276         video_output/display.c \
277         video_output/display.h \
278         video_output/event.h \
279         video_output/inhibit.c \
280         video_output/inhibit.h \
281         video_output/interlacing.c \
282         video_output/interlacing.h \
283         video_output/snapshot.c \
284         video_output/snapshot.h \
285         video_output/statistic.h \
286         video_output/video_output.c \
287         video_output/video_text.c \
288         video_output/video_epg.c \
289         video_output/video_widgets.c \
290         video_output/vout_subpictures.c \
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/io.c \
301         network/tcp.c \
302         network/udp.c \
303         network/rootbind.c \
304         network/tls.c \
305         text/charset.c \
306         text/memstream.c \
307         text/strings.c \
308         text/unicode.c \
309         text/url.c \
310         text/filesystem.c \
311         text/iso_lang.c \
312         text/iso-639_def.h \
313         misc/md5.c \
314         misc/probe.c \
315         misc/rand.c \
316         misc/mtime.c \
317         misc/block.c \
318         misc/fifo.c \
319         misc/fourcc.c \
320         misc/fourcc_list.h \
321         misc/es_format.c \
322         misc/picture.c \
323         misc/picture.h \
324         misc/picture_fifo.c \
325         misc/picture_pool.c \
326         misc/interrupt.h \
327         misc/interrupt.c \
328         misc/keystore.c \
329         misc/renderer_discovery.c \
330         misc/threads.c \
331         misc/cpu.c \
332         misc/epg.c \
333         misc/exit.c \
334         misc/events.c \
335         misc/image.c \
336         misc/messages.c \
337         misc/mime.c \
338         misc/objects.c \
339         misc/variables.h \
340         misc/variables.c \
341         misc/error.c \
342         misc/xml.c \
343         misc/addons.c \
344         misc/filter.c \
345         misc/filter_chain.c \
346         misc/httpcookies.c \
347         misc/fingerprinter.c \
348         misc/text_style.c \
349         misc/subpicture.c \
350         misc/subpicture.h
351 libvlccore_la_LIBADD = $(LIBS_libvlccore) \
352         ../compat/libcompat.la \
353         $(LTLIBINTL) $(LTLIBICONV) \
354         $(IDN_LIBS) $(LIBPTHREAD) $(SOCKET_LIBS) $(LIBRT) $(LIBDL) $(LIBM)
356 if HAVE_WIN32
357 libvlccore_la_SOURCES += \
358         win32/dirs.c \
359         win32/error.c \
360         win32/filesystem.c \
361         win32/netconf.c \
362         win32/plugin.c \
363         win32/rand.c \
364         win32/specific.c \
365         win32/thread.c \
366         win32/winsock.c
367 if HAVE_WINSTORE
368 libvlccore_la_SOURCES += posix/timer.c
369 else
370 libvlccore_la_SOURCES += win32/timer.c
371 endif
372 else
373 if HAVE_OS2
374 libvlccore_la_SOURCES += \
375         os2/dirs.c \
376         darwin/error.c \
377         os2/filesystem.c \
378         os2/getaddrinfo.c \
379         os2/netconf.c \
380         os2/plugin.c \
381         os2/specific.c \
382         os2/rand.c \
383         os2/thread.c
384 else
385 libvlccore_la_SOURCES += \
386         posix/filesystem.c \
387         posix/plugin.c \
388         posix/rand.c \
389         posix/timer.c
390 if HAVE_ANDROID
391 libvlccore_la_SOURCES += \
392         android/error.c \
393         android/specific.c \
394         android/thread.c \
395         linux/cpu.c \
396         linux/dirs.c \
397         linux/thread.c
398 else
399 if HAVE_DARWIN
400 libvlccore_la_SOURCES += \
401         darwin/dirs.c \
402         darwin/error.c \
403         darwin/netconf.c \
404         darwin/specific.c \
405         darwin/thread.c
406 else
407 libvlccore_la_SOURCES += \
408         posix/dirs.c \
409         posix/error.c \
410         posix/netconf.c \
411         posix/specific.c \
412         posix/thread.c
413 if HAVE_LINUX
414 libvlccore_la_SOURCES += \
415         linux/cpu.c \
416         linux/dirs.c \
417         linux/getaddrinfo.c \
418         linux/thread.c
419 libvlccore_la_LIBADD += -lanl
420 else
421 libvlccore_la_SOURCES += \
422         posix/getaddrinfo.c
423 endif
424 endif
425 endif
426 endif
427 endif
429 if BUILD_HTTPD
430 libvlccore_la_SOURCES += network/httpd.c
431 endif
433 if ENABLE_SOUT
434 libvlccore_la_SOURCES += \
435         stream_output/sap.c stream_output/sdp.c \
436         stream_output/stream_output.c stream_output/stream_output.h
437 if ENABLE_VLM
438 libvlccore_la_SOURCES += input/vlm.c input/vlm_event.c input/vlmshell.c
439 endif
440 endif
442 if UPDATE_CHECK
443 libvlccore_la_SOURCES += \
444         misc/update.h misc/update.c \
445         misc/update_crypto.c
446 AM_CPPFLAGS += -DUPDATE_CHECK
447 AM_CFLAGS += $(GCRYPT_CFLAGS)
448 libvlccore_la_LIBADD += $(GCRYPT_LIBS)
449 endif
451 libvlccore_la_LDFLAGS = \
452         $(LDFLAGS_libvlccore) \
453         -no-undefined \
454         -export-symbols $(srcdir)/libvlccore.sym \
455         -version-info 8:0:0
456 libvlccore_la_DEPENDENCIES = libvlccore.sym
457 if HAVE_WIN32
458 libvlccore_la_DEPENDENCIES += libvlc_win32_rc.$(OBJEXT)
459 libvlccore_la_LDFLAGS += -Wl,libvlc_win32_rc.$(OBJEXT) -avoid-version -Wc,-static
460 endif
461 if HAVE_OS2
462 libvlccore_la_LDFLAGS += -avoid-version
463 endif
464 if HAVE_DBUS
465 libvlccore_la_LIBADD += $(DBUS_LIBS)
466 endif
467 if HAVE_DARWIN
468 libvlccore_la_LDFLAGS += -Xlinker -install_name -Xlinker @rpath/libvlccore.dylib
469 endif
471 libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc
472         $(WINDRES) --include-dir $(top_srcdir)/share --include-dir $(top_srcdir)/extras/package/win32 -i $< -o $@
474 # FourCC tables
475 BUILT_SOURCES += fourcc_tables.h
476 EXTRA_DIST += misc/fourcc_gen.c
477 MOSTLYCLEANFILES = fourcc_gen$(BUILDEXEEXT)
479 fourcc_gen$(BUILDEXEEXT): misc/fourcc_gen.c misc/fourcc_list.h ../include/vlc_fourcc.h
480         $(AM_V_at)rm -f -- $@
481         $(AM_V_CC)$(BUILDCC) -I$(srcdir) -o $@ $<
483 fourcc_tables.h: fourcc_gen$(BUILDEXEEXT)
484         $(AM_V_at)rm -f -- $@.tmp
485         $(AM_V_GEN)$(builddir)/fourcc_gen > $@.tmp
486         $(AM_V_at)mv -f -- $@.tmp $@
488 # Unit/regression tests
490 check_PROGRAMS = \
491         test_block \
492         test_dictionary \
493         test_i18n_atof \
494         test_interrupt \
495         test_md5 \
496         test_picture_pool \
497         test_timer \
498         test_url \
499         test_utf8 \
500         test_xmlent \
501         test_headers \
502         test_mrl_helpers
504 TESTS = $(check_PROGRAMS) check_symbols
506 test_block_SOURCES = test/block_test.c
507 test_block_LDADD = $(LDADD) $(LIBS_libvlccore)
508 test_block_DEPENDENCIES =
510 test_dictionary_SOURCES = test/dictionary.c
511 test_i18n_atof_SOURCES = test/i18n_atof.c
512 test_interrupt_SOURCES = test/interrupt.c
513 test_interrupt_LDADD = $(LDADD) $(LIBS_libvlccore) $(LIBPTHREAD)
514 test_md5_SOURCES = test/md5.c
515 test_picture_pool_SOURCES = test/picture_pool.c
516 test_timer_SOURCES = test/timer.c
517 test_url_SOURCES = test/url.c
518 test_utf8_SOURCES = test/utf8.c
519 test_xmlent_SOURCES = test/xmlent.c
520 test_headers_SOURCES = test/headers.c
521 test_mrl_helpers_SOURCES = test/mrl_helpers.c
523 AM_LDFLAGS = -no-install
524 LDADD = libvlccore.la \
525         ../compat/libcompat.la
527 ###############################################################################
528 # GIT revision
529 ###############################################################################
531 BUILT_SOURCES += stamp-revision
532 MAINTAINERCLEANFILES = $(srcdir)/revision.txt $(srcdir)/revision.c
534 $(srcdir)/revision.c: $(srcdir)/revision.txt
535         $(AM_V_at)rm -f -- $@
536         $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat $<)\";" \
537                 > $@
539 $(srcdir)/revision.txt:
540         $(AM_V_at)$(MAKE) stamp-revision
541         $(AM_V_GEN)touch $@
543 stamp-revision:
544         $(AM_V_at)rm -f -- revision.tmp
545         $(AM_V_GEN)if ! git \
546                         --git-dir="$(top_srcdir)/.git/" describe \
547                         --tags --long --match '?.*.*' --always; then \
548                 cat $(srcdir)/revision.txt ; \
549         fi > revision.tmp
550         $(AM_V_at)if diff revision.tmp $(srcdir)/revision.txt >/dev/null 2>&1; then \
551                 rm -f -- revision.tmp; \
552         else \
553                 mv -f -- revision.tmp $(srcdir)/revision.txt; \
554         fi
555 #2>&1
557 ###############################################################################
558 # Unit/regression test
559 ###############################################################################
561 dist_check_SCRIPTS = check_headers check_symbols
563 check-local:
564         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
565         do \
566                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
567                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
568                 then \
569                         echo "Header $$h not included in test/headers.c!"; \
570                         exit 1; \
571                 fi ; \
572         done
573         $(SHELL) $(srcdir)/check_headers $(pluginsinclude_HEADERS)
575 FORCE:
576         @echo "Generated source cannot be phony. Go away." >&2
577         @exit 1
579 .PHONY: FORCE