]> git.sesse.net Git - vlc/blob - src/Makefile.am
Qt: by default resize main interface so that it shows all MenuBar entries
[vlc] / src / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 AUTOMAKE_OPTIONS = subdir-objects
6
7 NULL =
8 EXTRA_DIST = extras/COPYING modules/builtin.h.in \
9         misc/beos_specific.cpp \
10         libvlc.pc.in \
11         vlc-plugin.pc.in \
12         libvlc.sym \
13         libvlccore.sym
14
15 BUILT_SOURCES = modules/builtin.h misc/revision.c ../include/vlc_about.h
16 CLEANFILES = $(BUILT_SOURCES)
17
18 SUFFIXES = .pc.in .pc
19
20 ###############################################################################
21 # Headers
22 ###############################################################################
23
24 pkgincludedir = $(includedir)/vlc
25 pluginsincludedir = $(pkgincludedir)/plugins
26
27 pkginclude_HEADERS = \
28         ../include/vlc/vlc.h \
29         ../include/vlc/deprecated.h \
30         ../include/vlc/libvlc.h \
31         ../include/vlc/libvlc_structures.h \
32         ../include/vlc/libvlc_media_list.h \
33         ../include/vlc/libvlc_events.h \
34         ../include/vlc/libvlc_vlm.h \
35         ../include/vlc/mediacontrol.h \
36         ../include/vlc/mediacontrol_structures.h \
37         $(NULL)
38
39 pluginsinclude_HEADERS = \
40         ../include/vlc_access.h \
41         ../include/vlc_acl.h \
42         ../include/vlc_aout.h \
43         ../include/vlc_arrays.h \
44         ../include/vlc_bits.h \
45         ../include/vlc_block.h \
46         ../include/vlc_block_helper.h \
47         ../include/vlc_charset.h \
48         ../include/vlc_codec.h \
49         ../include/vlc_common.h \
50         ../include/vlc_config.h \
51         ../include/vlc_config_cat.h \
52         ../include/vlc_configuration.h \
53         ../include/vlc_demux.h \
54         ../include/vlc_epg.h \
55         ../include/vlc_es.h \
56         ../include/vlc_es_out.h \
57         ../include/vlc_events.h \
58         ../include/vlc_filter.h \
59         ../include/vlc_gcrypt.h \
60         ../include/vlc_httpd.h \
61         ../include/vlc_image.h \
62         ../include/vlc_input.h \
63         ../include/vlc_main.h \
64         ../include/vlc_md5.h \
65         ../include/vlc_messages.h \
66         ../include/vlc_meta.h \
67         ../include/vlc_modules.h \
68         ../include/vlc_mtime.h \
69         ../include/vlc_objects.h \
70         ../include/vlc_playlist.h \
71         ../include/vlc_plugin.h \
72         ../include/vlc_rand.h \
73         ../include/vlc_services_discovery.h \
74         ../include/vlc_sout.h \
75         ../include/vlc_stream.h \
76         ../include/vlc_strings.h \
77         ../include/vlc_threads.h \
78         ../include/vlc_url.h \
79         ../include/vlc_variables.h \
80         ../include/vlc_vlm.h \
81         ../include/vlc_vout.h \
82         ../include/vlc_window.h \
83         ../include/vlc_xml.h \
84         $(NULL)
85
86 noinst_HEADERS = \
87         ../include/mmx.h \
88         ../include/vlc_codec_synchro.h \
89         ../include/vlc_codecs.h \
90         ../include/vlc_devices.h \
91         ../include/vlc_fixups.h \
92         ../include/vlc_interface.h \
93         ../include/vlc_intf_strings.h \
94         ../include/vlc_iso_lang.h \
95         ../include/vlc_keys.h \
96         ../include/vlc_network.h \
97         ../include/vlc_osd.h \
98         ../include/vlc_pgpkey.h \
99         ../include/vlc_tls.h \
100         ../include/vlc_update.h \
101         ../include/vlc_vod.h \
102         $(NULL)
103
104 modules/builtin.h: modules/builtin.h.in ../vlc-config Makefile.am
105         rm -f -- "$@.tmp"
106         cat "$(srcdir)/modules/builtin.h.in" > "$@.tmp"
107 if !HAVE_PLUGINS
108         plugins="$$($(VLC_CONFIG) --list plugin)" ; \
109         test -n "$${plugins}" && \
110         for p in $${plugins}; do \
111                 echo "int vlc_entry__$$p (module_t *);" ; \
112         done >> "$@.tmp"
113 endif
114         echo "#define ALLOCATE_ALL_BUILTINS() \\" >> "$@.tmp"
115         echo "    do \\" >> "$@.tmp"
116         echo "    { \\" >> "$@.tmp"
117 if !HAVE_PLUGINS
118         plugins="$$($(VLC_CONFIG) --list plugin)" ; \
119         test -n "$${plugins}" && \
120         for p in $${plugins}; do \
121                 echo "        ALLOCATE_BUILTIN($$p); \\" ; \
122         done >> "$@.tmp"
123 endif
124         echo '    } while( 0 );' >> "$@.tmp"
125         mv -f -- "$@.tmp" "$@"
126
127 modules/modules.c: modules/builtin.h
128
129 ../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
130         rm -f -- "$@.tmp"
131         mkdir -p -- ../include
132         echo "/* Automatically generated file - DO NOT EDIT */" > "$@.tmp"
133         echo "static const char psz_license[] =" >> "$@.tmp"
134         cat $(top_srcdir)/COPYING | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }' >> "$@.tmp"
135         echo ";" >> "$@.tmp"
136         echo "static const char psz_thanks[] =" >> "$@.tmp"
137         grep -v '$$Id:'  $(top_srcdir)/THANKS | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }'|sed s/"<.*.> "// >> "$@.tmp"
138         echo ";" >> "$@.tmp"
139         echo "static const char psz_authors[] =" >> "$@.tmp"
140         grep N: $(top_srcdir)/AUTHORS | cut -d" " -f 2- | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }' >> "$@.tmp"
141         echo ";" >> "$@.tmp"
142         mv -f -- "$@.tmp" "$@"
143
144 ###############################################################################
145 # pkg-config integration
146 ###############################################################################
147
148 pkgconfigdir = $(libdir)/pkgconfig
149 pkgconfig_DATA = libvlc.pc vlc-plugin.pc
150 CLEANFILES += $(pkgconfig_DATA)
151
152 .pc.in.pc: $(top_builddir)/config.status
153         cd "$(top_builddir)" && \
154         $(SHELL) ./config.status --file="src/$@"
155
156 ###############################################################################
157 # Building libvlc
158 ###############################################################################
159
160 nice:
161         $(top_builddir)/compile
162
163 lib_LTLIBRARIES = libvlccore.la libvlc.la
164
165 AM_LDFLAGS = -no-undefined
166 if HAVE_WIN32
167 AM_LDFLAGS += -avoid-version
168 endif
169
170 libvlccore_la_SOURCES = $(SOURCES_libvlc)
171 nodist_libvlccore_la_SOURCES = misc/revision.c
172 libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlc` \
173         -DMODULE_STRING=\"main\" \
174         -DLOCALEDIR=\"$(localedir)\" \
175         -DSYSCONFDIR=\"$(sysconfdir)\" \
176         -DDATA_PATH=\"$(pkgdatadir)\" \
177         -DLIBDIR=\"$(libdir)\" \
178         -DPLUGIN_PATH=\"$(pkglibdir)\"
179 libvlccore_la_LDFLAGS = `$(VLC_CONFIG) --ldflags libvlc` $(AM_LDFLAGS) \
180         -export-symbols $(srcdir)/libvlccore.sym \
181         -version-info 0:1:0
182 libvlccore_la_LIBADD = `$(VLC_CONFIG) -libs libvlc` $(AM_LIBADD) $(LTLIBINTL)
183 libvlccore_la_DEPENDENCIES = libvlccore.sym
184 if HAVE_WIN32
185 libvlccore_la_DEPENDENCIES += $(DATA_win32_rc_lib)
186 libvlccore_la_LDFLAGS += -Wl,$(DATA_win32_rc_lib)
187 endif
188
189 libvlc_la_SOURCES = $(SOURCES_libvlc_control)
190 libvlc_la_LIBADD = libvlccore.la
191 libvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlc` \
192         -DMODULE_STRING=\"control\"
193 libvlc_la_LDFLAGS = $(AM_LDFLAGS) \
194         -version-info 2:1:0 \
195         -export-symbols $(srcdir)/libvlc.sym
196 libvlc_la_DEPENDENCIES = libvlc.sym libvlccore.la
197 if HAVE_WIN32
198 libvlc_la_DEPENDENCIES += $(DATA_win32_rc_lib)
199 libvlc_la_LDFLAGS += -Wl,$(DATA_win32_rc_lib)
200 endif
201
202
203 EXTRA_libvlccore_la_SOURCES = \
204         $(SOURCES_libvlc_beos) \
205         $(SOURCES_libvlc_darwin) \
206         $(SOURCES_libvlc_linux) \
207         $(SOURCES_libvlc_win32) \
208         $(SOURCES_libvlc_other) \
209         $(SOURCES_libvlc_dirent) \
210         $(SOURCES_libvlc_getopt) \
211         $(SOURCES_libvlc_sout) \
212         $(SOURCES_libvlc_vlm) \
213         $(NULL)
214 if HAVE_BEOS
215 libvlccore_la_SOURCES += $(SOURCES_libvlc_beos)
216 else
217 if HAVE_DARWIN
218 libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin)
219 else
220 if HAVE_LINUX
221 libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
222 else
223 if HAVE_WIN32
224 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
225 else
226 if HAVE_WINCE
227 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
228 else
229 libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
230 endif
231 endif
232 endif
233 endif
234 endif
235 if BUILD_DIRENT
236 libvlccore_la_SOURCES += $(SOURCES_libvlc_dirent)
237 endif
238 if BUILD_GETOPT
239 libvlccore_la_SOURCES += $(SOURCES_libvlc_getopt)
240 endif
241 if ENABLE_SOUT
242 libvlccore_la_SOURCES += $(SOURCES_libvlc_sout)
243 if ENABLE_VLM
244 libvlccore_la_SOURCES += $(SOURCES_libvlc_vlm)
245 endif
246 endif
247
248 SOURCES_libvlc_beos = \
249         $(NULL)
250
251 SOURCES_libvlc_darwin = \
252         misc/darwin_specific.c \
253         $(NULL)
254
255 SOURCES_libvlc_linux = \
256         misc/linux_specific.c \
257         $(NULL)
258
259 SOURCES_libvlc_win32 = \
260         misc/win32_specific.c \
261         network/winsock.c \
262         $(NULL)
263
264 SOURCES_libvlc_other = misc/not_specific.c
265
266 SOURCES_libvlc_dirent = \
267         extras/dirent.c \
268         $(NULL)
269
270 SOURCES_libvlc_getopt = \
271         extras/getopt.c \
272         extras/getopt.h \
273         extras/getopt1.c \
274         $(NULL)
275
276 SOURCES_libvlc_common = \
277         libvlc.c \
278         libvlc.h \
279         libvlc-module.c \
280         version.c \
281         interface/interface.h \
282         interface/interface.c \
283         interface/intf_eject.c \
284         interface/interaction.c \
285         playlist/playlist_internal.h \
286         playlist/thread.c \
287         playlist/control.c \
288         playlist/engine.c \
289         playlist/sort.c \
290         playlist/loadsave.c \
291         playlist/tree.c \
292         playlist/item.c \
293         playlist/search.c \
294         playlist/services_discovery.c \
295         input/item.c \
296         input/access.c \
297         input/clock.c \
298         input/control.c \
299         input/decoder.c \
300         input/decoder_synchro.c \
301         input/demux.c \
302         input/es_out.c \
303         input/input.c \
304         input/meta.c \
305         input/input_internal.h \
306         input/vlm_internal.h \
307         input/stream.c \
308         input/mem_stream.c \
309         input/subtitles.c \
310         input/var.c \
311         video_output/video_output.c \
312         video_output/vout_pictures.c \
313         video_output/vout_pictures.h \
314         video_output/video_text.c \
315         video_output/video_widgets.c \
316         video_output/vout_subpictures.c \
317         video_output/vout_intf.c \
318         audio_output/aout_internal.h \
319         audio_output/common.c \
320         audio_output/dec.c \
321         audio_output/filters.c \
322         audio_output/input.c \
323         audio_output/mixer.c \
324         audio_output/output.c \
325         audio_output/intf.c \
326         osd/osd.c \
327         osd/osd_text.c \
328         osd/osd_widgets.c \
329         network/acl.c \
330         network/getaddrinfo.c \
331         network/io.c \
332         network/tcp.c \
333         network/udp.c \
334         network/httpd.c \
335         network/rootbind.c \
336         network/tls.c \
337         network/poll.c \
338         text/charset.c \
339         text/strings.c \
340         text/unicode.c \
341         text/wincp.c \
342         text/iso_lang.c \
343         text/iso-639_def.h \
344         misc/md5.c \
345         misc/rand.c \
346         misc/mtime.c \
347         misc/block.c \
348         misc/es_format.c \
349         modules/modules.h \
350         modules/modules.c \
351         modules/cache.c \
352         modules/entry.c \
353         modules/os.c \
354         misc/threads.c \
355         misc/stats.c \
356         misc/cpu.c \
357         misc/action.c \
358         config/configuration.h \
359         config/core.c \
360         config/dirs.c \
361         config/chain.c \
362         config/file.c \
363         config/intf.c \
364         config/cmdline.c \
365         misc/events.c \
366         misc/image.c \
367         misc/messages.c \
368         misc/objects.c \
369         misc/variables.h \
370         misc/variables.c \
371         misc/error.c \
372         misc/update.h \
373         misc/update.c \
374         misc/xml.c \
375         misc/devices.c \
376         extras/libc.c \
377         misc/filter_chain.c \
378         $(NULL)
379
380 SOURCES_libvlc_sout = \
381         stream_output/stream_output.c \
382         stream_output/stream_output.h \
383         stream_output/announce.c \
384         stream_output/sap.c \
385         stream_output/sdp.c \
386         $(NULL)
387
388 SOURCES_libvlc_vlm = \
389         input/vlm.c \
390         input/vlmshell.c \
391         $(NULL)
392
393 SOURCES_libvlc = \
394         $(SOURCES_libvlc_common) \
395         $(OPT_SOURCES_libvlc_beos) \
396         $(OPT_SOURCES_libvlc_darwin) \
397         $(OPT_SOURCES_libvlc_win32) \
398         $(OPT_SOURCES_libvlc_dirent) \
399         $(OPT_SOURCES_libvlc_getopt) \
400         $(NULL)
401
402 SOURCES_libvlc_control = \
403         control/libvlc_internal.h \
404         control/core.c \
405         control/log.c \
406         control/playlist.c \
407         control/vlm.c \
408         control/video.c \
409         control/audio.c \
410         control/event.c \
411         control/flat_media_list_view.c \
412         control/hierarchical_media_list_view.c \
413         control/hierarchical_node_media_list_view.c \
414         control/media.c \
415         control/media_player.c \
416         control/media_list.c \
417         control/media_list_path.h \
418         control/media_list_player.c \
419         control/media_list_view.c \
420         control/media_library.c \
421         control/mediacontrol_internal.h \
422         control/mediacontrol_core.c \
423         control/mediacontrol_util.c \
424         control/mediacontrol_audio_video.c \
425         control/media_discoverer.c
426
427 ###############################################################################
428 # Stamp rules
429 ###############################################################################
430
431 misc/revision.c:
432         rm -f $@ $@.tmp
433         echo "/* AUTOGENERATED FILE - DO NOT EDIT */" > $@.tmp
434         REVISION="$$(LANG=C git --git-dir=$(top_srcdir)/.git show-ref --head -s HEAD 2>/dev/null || echo exported)"; \
435         REVISION="$$(echo $$REVISION|cut -b -10)"; \
436         echo "const char psz_vlc_changeset[] = \"$$REVISION\";" >> $@.tmp
437         mv -f $@.tmp $@
438
439
440 ###############################################################################
441 # Building vlc
442 ###############################################################################
443
444 EXTRA_PROGRAMS = vlc vlc-wrapper
445 if BUILD_VLC
446 bin_PROGRAMS = vlc
447 if !HAVE_WIN32
448 bin_PROGRAMS += vlc-wrapper
449 endif
450 endif
451
452 EXTRA_vlc_SOURCES = vlc.c winvlc.c
453 if !HAVE_WIN32
454 vlc_SOURCES = vlc.c
455 else
456 vlc_SOURCES = winvlc.c
457 endif
458 vlc_wrapper_SOURCES = network/rootwrap.c
459
460 vlc_DEPENDENCIES = $(DATA_win32_rc) libvlc.la
461
462 vlc_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
463 vlc_LDFLAGS = `$(VLC_CONFIG) --ldflags vlc`
464 # vlc needs libvlccore for locale conversion
465 vlc_LDADD = $(DATA_win32_rc) libvlc.la libvlccore.la $(LTLIBINTL) \
466         `$(VLC_CONFIG) -libs vlc`
467
468 if BUILD_VLC
469 vlc$(EXEEXT): $(vlc_OBJECTS) $(vlc_DEPENDENCIES)
470         @rm -f vlc$(EXEEXT)
471         @case `$(VLC_CONFIG) --linkage vlc builtin` in \
472           c++) cmd="$(CXXLINK)" ;; \
473           objc) cmd="$(OBJCLINK)" ;; \
474           c|*) cmd="$(LINK)" ;; \
475         esac ; \
476         cmd="$$cmd $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS)" ; \
477         echo $$cmd ; \
478         eval $$cmd
479
480 if HAVE_WIN32
481 DATA_win32_rc = vlc_win32_rc.$(OBJEXT)
482 DATA_win32_rc_lib = libvlc_win32_rc.$(OBJEXT)
483 noinst_DATA = $(DATA_win32_rc) $(DATA_win32_rc_lib)
484
485 vlc_win32_rc.$(OBJEXT): $(top_builddir)/share/vlc_win32_rc.rc
486         $(WINDRES) --include-dir $(top_srcdir)/share -i $< -o $@
487
488 libvlc_win32_rc.$(OBJEXT): $(top_builddir)/share/libvlc_win32_rc.rc
489         $(WINDRES) --include-dir $(top_srcdir)/share -i $< -o $@
490 endif
491 endif
492
493 ###############################################################################
494 # Unit/regression test
495 ###############################################################################
496 check_PROGRAMS = \
497         test_block \
498         test_dictionary \
499         test_i18n_atof \
500         test_url \
501         test_utf8 \
502         test_headers \
503         $(NULL)
504
505 dist_check_SCRIPTS = check_symbols check_headers
506 TESTS = $(check_PROGRAMS) check_symbols
507
508 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc`
509 LDFLAGS_tests = $(AM_LDFLAGS) -no-install
510
511 test_block_SOURCES = test/block.c
512 test_block_LDADD = libvlccore.la
513 test_block_CFLAGS = $(CFLAGS_tests)
514 test_block_LDFLAGS = $(LDFLAGS_tests)
515
516 test_dictionary_SOURCES = test/dictionary.c
517 test_dictionary_LDADD = libvlccore.la
518 test_dictionary_CFLAGS = $(CFLAGS_tests)
519 test_dictionary_LDFLAGS = $(LDFLAGS_tests)
520
521 test_i18n_atof_SOURCES = test/i18n_atof.c text/charset.c
522 test_i18n_atof_LDADD = libvlccore.la
523 test_i18n_atof_CFLAGS = $(CFLAGS_tests)
524 test_i18n_atof_LDFLAGS = $(LDFLAGS_tests)
525
526 test_url_SOURCES = test/url.c
527 test_url_LDADD = libvlccore.la
528 test_url_CFLAGS = $(CFLAGS_tests)
529 test_url_LDFLAGS = $(LDFLAGS_tests)
530
531 test_utf8_SOURCES = test/utf8.c
532 test_utf8_LDADD = libvlccore.la
533 test_utf8_CFLAGS = $(CFLAGS_tests)
534 test_utf8_LDFLAGS = $(LDFLAGS_tests)
535
536 test_headers_SOURCES = test/headers.c
537 test_headers_CFLAGS = $(CFLAGS_tests)
538 test_headers_LDFLAGS = $(LDFLAGS_tests)
539
540 check-local:
541         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
542         do \
543                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
544                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
545                 then \
546                         echo "Header $$h not included in test/headers.c!"; \
547                         exit 1; \
548                 fi ; \
549         done
550         $(srcdir)/check_headers $(pkginclude_HEADERS)
551         $(srcdir)/check_headers $(pluginsinclude_HEADERS)
552
553 FORCE:
554         @echo "Generated source cannot be phony. Go away." >&2
555         @exit 1
556
557 .PHONY: FORCE