]> git.sesse.net Git - vlc/blob - src/Makefile.am
Write generic semaphore back-end and merge generic thread code
[vlc] / src / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 AUTOMAKE_OPTIONS = subdir-objects
6
7 NULL =
8 EXTRA_DIST = \
9         vlc-plugin.pc.in \
10         libvlccore.sym \
11         revision.txt
12
13 BUILT_SOURCES = $(nodist_pluginsinclude_HEADERS)
14 CLEANFILES = $(BUILT_SOURCES)
15
16 SUFFIXES = .pc.in .pc .rc.in .rc
17
18 ###############################################################################
19 # Headers
20 ###############################################################################
21
22 pluginsincludedir = $(pkgincludedir)/plugins
23
24 pluginsinclude_HEADERS = \
25         ../include/vlc_access.h \
26         ../include/vlc_aout.h \
27         ../include/vlc_aout_intf.h \
28         ../include/vlc_aout_volume.h \
29         ../include/vlc_arrays.h \
30         ../include/vlc_art_finder.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_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_keys.h \
61         ../include/vlc_main.h \
62         ../include/vlc_md5.h \
63         ../include/vlc_messages.h \
64         ../include/vlc_meta.h \
65         ../include/vlc_media_library.h \
66         ../include/vlc_mime.h \
67         ../include/vlc_modules.h \
68         ../include/vlc_mouse.h \
69         ../include/vlc_mtime.h \
70         ../include/vlc_network.h \
71         ../include/vlc_objects.h \
72         ../include/vlc_picture.h \
73         ../include/vlc_picture_fifo.h \
74         ../include/vlc_picture_pool.h \
75         ../include/vlc_playlist.h \
76         ../include/vlc_plugin.h \
77         ../include/vlc_probe.h \
78         ../include/vlc_rand.h \
79         ../include/vlc_services_discovery.h \
80         ../include/vlc_sql.h \
81         ../include/vlc_sout.h \
82         ../include/vlc_spu.h \
83         ../include/vlc_stream.h \
84         ../include/vlc_strings.h \
85         ../include/vlc_subpicture.h \
86         ../include/vlc_text_style.h \
87         ../include/vlc_threads.h \
88         ../include/vlc_tls.h \
89         ../include/vlc_url.h \
90         ../include/vlc_variables.h \
91         ../include/vlc_vlm.h \
92         ../include/vlc_video_splitter.h \
93         ../include/vlc_vout.h \
94         ../include/vlc_vout_display.h \
95         ../include/vlc_vout_osd.h \
96         ../include/vlc_vout_window.h \
97         ../include/vlc_xml.h \
98         ../include/vlc_xlib.h \
99         $(NULL)
100 nodist_pluginsinclude_HEADERS = ../include/vlc_about.h
101
102 noinst_HEADERS = \
103         ../include/vlc_codec_synchro.h \
104         ../include/vlc_codecs.h \
105         ../include/vlc_extensions.h \
106         ../include/vlc_fixups.h \
107         ../include/vlc_interface.h \
108         ../include/vlc_intf_strings.h \
109         ../include/vlc_iso_lang.h \
110         ../include/vlc_memory.h \
111         ../include/vlc_osd.h \
112         ../include/vlc_pgpkey.h \
113         ../include/vlc_update.h \
114         ../include/vlc_vod.h \
115         ../include/vlc_vout_wrapper.h \
116         ../include/vlc_windows_interfaces.h \
117         $(NULL)
118
119 ../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
120         $(AM_V_at)rm -f -- "$@.tmp"
121         $(AM_V_at)mkdir -p -- ../include
122         $(AM_V_GEN)(echo "/* Automatically generated file - DO NOT EDIT */" && \
123         echo "static const char psz_license[] =" && \
124         sed 's/"/\\"/g;s/^.*$$/\"&\\n\"/' "$(top_srcdir)/COPYING" && \
125         echo ";" && \
126         echo "static const char psz_thanks[] =" && \
127         sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
128                 "$(top_srcdir)/THANKS" && \
129         echo ";" && \
130         echo "static const char psz_authors[] =" && \
131         sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
132                 "$(top_srcdir)/AUTHORS" && \
133         echo ";") >> "$@.tmp"
134         $(AM_V_at)mv -f -- "$@.tmp" "$@"
135
136 ###############################################################################
137 # pkg-config integration
138 ###############################################################################
139
140 pkgconfigdir = $(libdir)/pkgconfig
141 pkgconfig_DATA = vlc-plugin.pc
142 CLEANFILES += $(pkgconfig_DATA)
143
144 .pc.in.pc: $(top_builddir)/config.status
145         $(AM_V_GEN)cd "$(top_builddir)" && \
146         $(SHELL) ./config.status --file="src/$@"
147
148 ##############################################################################
149 # Windows resource files
150 ##############################################################################
151
152 if HAVE_WIN32
153 noinst_DATA = libvlc_win32_rc.rc
154 endif
155 EXTRA_DIST += libvlc_win32_rc.rc.in
156
157 .rc.in.rc: $(top_builddir)/config.status
158         cd "$(top_builddir)" && \
159         $(SHELL) ./config.status --file="src/$@"
160
161 ###############################################################################
162 # Building libvlc
163 ###############################################################################
164
165 lib_LTLIBRARIES = libvlccore.la
166
167 AM_CPPFLAGS = $(INCICONV) $(IDN_CFLAGS) \
168         -DMODULE_STRING=\"main\" \
169         -DLOCALEDIR=\"$(localedir)\" \
170         -DSYSCONFDIR=\"$(sysconfdir)\" \
171         -DPKGDATADIR=\"$(vlcdatadir)\" \
172         -DPKGLIBDIR=\"$(vlclibdir)\"
173 AM_CFLAGS = $(CFLAGS_libvlccore)
174 if HAVE_DYNAMIC_PLUGINS
175 AM_CPPFLAGS += -DHAVE_DYNAMIC_PLUGINS
176 endif
177 if HAVE_DBUS
178 AM_CPPFLAGS += -DHAVE_DBUS
179 AM_CFLAGS += $(DBUS_CFLAGS)
180 endif
181
182 libvlccore_la_SOURCES = $(SOURCES_libvlc)
183 libvlccore_la_LDFLAGS = \
184         -no-undefined \
185         $(LDFLAGS_libvlccore) \
186         -no-undefined \
187         -export-symbols $(srcdir)/libvlccore.sym \
188         -version-info 5:0:0
189 libvlccore_la_LIBADD = $(LIBS_libvlccore) \
190         ../compat/libcompat.la \
191         $(LTLIBINTL) $(LTLIBICONV) \
192         $(IDN_LIBS) $(LIBPTHREAD) $(SOCKET_LIBS) $(LIBDL) $(LIBM)
193 libvlccore_la_DEPENDENCIES = libvlccore.sym
194 if HAVE_WIN32
195 libvlccore_la_DEPENDENCIES += libvlc_win32_rc.$(OBJEXT)
196 libvlccore_la_LDFLAGS += -Wl,libvlc_win32_rc.$(OBJEXT) -avoid-version
197 endif
198 if HAVE_DBUS
199 libvlccore_la_LIBADD += $(DBUS_LIBS)
200 endif
201
202 libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc
203         $(WINDRES) --include-dir $(top_srcdir)/share --include-dir $(top_srcdir)/extras/package/win32 -i $< -o $@
204
205 EXTRA_libvlccore_la_SOURCES = \
206         $(SOURCES_libvlc_darwin) \
207         $(SOURCES_libvlc_linux) \
208         $(SOURCES_libvlc_win32) \
209         $(SOURCES_libvlc_os2) \
210         $(SOURCES_libvlc_other) \
211         $(SOURCES_libvlc_httpd) \
212         $(SOURCES_libvlc_sout) \
213         $(SOURCES_libvlc_vlm) \
214         $(NULL)
215 if HAVE_DARWIN
216 libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin)
217 else
218 if HAVE_LINUX
219 libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
220 else
221 if HAVE_WIN32
222 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
223 else
224 if HAVE_SYMBIAN
225 #libvlccore_la_SOURCES += $(SOURCES_libvlc_symbian)
226 else
227 if HAVE_OS2
228 libvlccore_la_SOURCES += $(SOURCES_libvlc_os2)
229 else
230 libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
231 endif
232 endif
233 endif
234 endif
235 endif
236 if BUILD_HTTPD
237 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
238 endif
239 if ENABLE_SOUT
240 libvlccore_la_SOURCES += $(SOURCES_libvlc_sout)
241 if ENABLE_VLM
242 libvlccore_la_SOURCES += $(SOURCES_libvlc_vlm)
243 endif
244 endif
245
246 SOURCES_libvlc_darwin = \
247         posix/darwin_dirs.c \
248         posix/filesystem.c \
249         posix/plugin.c \
250         posix/thread.c \
251         posix/timer.c \
252         posix/darwin_specific.c \
253         posix/rand.c \
254         $(NULL)
255
256 SOURCES_libvlc_linux = \
257         posix/dirs.c \
258         posix/filesystem.c \
259         posix/plugin.c \
260         posix/thread.c \
261         posix/timer.c \
262         posix/linux_cpu.c \
263         posix/linux_specific.c \
264         posix/specific.c \
265         posix/rand.c \
266         $(NULL)
267
268 SOURCES_libvlc_win32 = \
269         win32/dirs.c \
270         win32/filesystem.c \
271         win32/plugin.c \
272         win32/thread.c \
273         win32/specific.c \
274         win32/winsock.c \
275         win32/rand.c \
276         $(NULL)
277
278 SOURCES_libvlc_symbian = \
279         symbian/path.cpp \
280         symbian/dirs.c \
281         win32/plugin.c \
282         posix/rand.c \
283         $(NULL)
284
285 SOURCES_libvlc_os2 = \
286         os2/getaddrinfo.c \
287         os2/dirs.c \
288         os2/filesystem.c \
289         os2/plugin.c \
290         os2/thread.c \
291         os2/specific.c \
292         os2/rand.c \
293         $(NULL)
294
295 SOURCES_libvlc_other = \
296         posix/dirs.c \
297         posix/filesystem.c \
298         posix/thread.c \
299         posix/timer.c \
300         posix/plugin.c \
301         posix/specific.c \
302         posix/rand.c \
303         $(NULL)
304
305 SOURCES_libvlc_common = \
306         libvlc.c \
307         libvlc.h \
308         libvlc-module.c \
309         missing.c \
310         revision.c \
311         version.c \
312         interface/dialog.c \
313         interface/interface.c \
314         playlist/playlist_internal.h \
315         playlist/art.c \
316         playlist/art.h \
317         playlist/thread.c \
318         playlist/control.c \
319         playlist/engine.c \
320         playlist/fetcher.c \
321         playlist/fetcher.h \
322         playlist/sort.c \
323         playlist/loadsave.c \
324         playlist/preparser.c \
325         playlist/preparser.h \
326         playlist/tree.c \
327         playlist/item.c \
328         playlist/search.c \
329         playlist/services_discovery.c \
330         input/item.c \
331         input/access.c \
332         input/clock.c \
333         input/control.c \
334         input/decoder.c \
335         input/decoder_synchro.c \
336         input/demux.c \
337         input/es_out.c \
338         input/es_out_timeshift.c \
339         input/event.c \
340         input/input.c \
341         input/info.h \
342         input/meta.c \
343         input/access.h \
344         input/clock.h \
345         input/decoder.h \
346         input/demux.h \
347         input/es_out.h \
348         input/es_out_timeshift.h \
349         input/event.h \
350         input/item.h \
351         input/stream.h \
352         input/input_internal.h \
353         input/input_interface.h \
354         input/vlm_internal.h \
355         input/vlm_event.h \
356         input/resource.h \
357         input/resource.c \
358         input/stats.c \
359         input/stream.c \
360         input/stream_demux.c \
361         input/stream_filter.c \
362         input/stream_memory.c \
363         input/subtitles.c \
364         input/var.c \
365         video_output/chrono.h \
366         video_output/control.c \
367         video_output/control.h \
368         video_output/display.c \
369         video_output/display.h \
370         video_output/event.h \
371         video_output/inhibit.c \
372         video_output/inhibit.h \
373         video_output/interlacing.c \
374         video_output/interlacing.h \
375         video_output/snapshot.c \
376         video_output/snapshot.h \
377         video_output/statistic.h \
378         video_output/postprocessing.c \
379         video_output/postprocessing.h \
380         video_output/video_output.c \
381         video_output/video_text.c \
382         video_output/video_epg.c \
383         video_output/video_widgets.c \
384         video_output/vout_subpictures.c \
385         video_output/window.c \
386         video_output/opengl.c \
387         video_output/vout_intf.c \
388         video_output/vout_internal.h \
389         video_output/vout_control.h \
390         video_output/vout_wrapper.c \
391         audio_output/aout_internal.h \
392         audio_output/common.c \
393         audio_output/dec.c \
394         audio_output/filters.c \
395         audio_output/input.c \
396         audio_output/output.c \
397         audio_output/volume.c \
398         audio_output/intf.c \
399         osd/osd.c \
400         osd/osd_text.c \
401         network/getaddrinfo.c \
402         network/io.c \
403         network/tcp.c \
404         network/udp.c \
405         network/rootbind.c \
406         network/tls.c \
407         text/charset.c \
408         text/strings.c \
409         text/unicode.c \
410         text/url.c \
411         text/filesystem.c \
412         text/iso_lang.c \
413         text/iso-639_def.h \
414         misc/md5.c \
415         misc/probe.c \
416         misc/rand.c \
417         misc/mtime.c \
418         misc/block.c \
419         misc/fourcc.c \
420         misc/es_format.c \
421         misc/picture.c \
422         misc/picture_fifo.c \
423         misc/picture_pool.c \
424         modules/modules.h \
425         modules/modules.c \
426         modules/bank.c \
427         modules/cache.c \
428         modules/entry.c \
429         modules/textdomain.c \
430         misc/threads.c \
431         misc/cpu.c \
432         misc/epg.c \
433         misc/exit.c \
434         config/configuration.h \
435         config/core.c \
436         config/chain.c \
437         config/file.c \
438         config/help.c \
439         config/intf.c \
440         config/keys.c \
441         config/cmdline.c \
442         config/getopt.c \
443         config/vlc_getopt.h \
444         misc/events.c \
445         misc/image.c \
446         misc/messages.c \
447         misc/mime.c \
448         misc/objects.c \
449         misc/variables.h \
450         misc/variables.c \
451         misc/error.c \
452         misc/update.h \
453         misc/update.c \
454         misc/update_crypto.c \
455         misc/xml.c \
456         misc/media_library.c \
457         extras/libc.c \
458         extras/tdestroy.c \
459         misc/filter.c \
460         misc/filter_chain.c \
461         misc/http_auth.c \
462         misc/sql.c \
463         misc/text_style.c \
464         misc/subpicture.c \
465         misc/subpicture.h \
466         $(NULL)
467
468 SOURCES_libvlc_httpd = \
469         network/httpd.c \
470         $(NULL)
471
472 SOURCES_libvlc_sout = \
473         stream_output/stream_output.c \
474         stream_output/stream_output.h \
475         stream_output/announce.c \
476         stream_output/sap.c \
477         stream_output/sdp.c \
478         $(NULL)
479
480 SOURCES_libvlc_vlm = \
481         input/vlm.c \
482         input/vlm_event.c \
483         input/vlmshell.c \
484         $(NULL)
485
486 SOURCES_libvlc = \
487         $(SOURCES_libvlc_common) \
488         $(NULL)
489
490 # Unit/regression tests
491 #
492 check_PROGRAMS = \
493         test_block \
494         test_dictionary \
495         test_i18n_atof \
496         test_md5 \
497         test_timer \
498         test_url \
499         test_utf8 \
500         test_xmlent \
501         test_headers
502
503 TESTS = $(check_PROGRAMS)
504
505 test_block_SOURCES = test/block_test.c
506 test_block_LDADD = $(LDADD) $(LIBS_libvlccore)
507 test_block_DEPENDENCIES =
508
509 test_dictionary_SOURCES = test/dictionary.c
510 test_i18n_atof_SOURCES = test/i18n_atof.c
511 test_md5_SOURCES = test/md5.c
512 test_timer_SOURCES = test/timer.c
513 test_url_SOURCES = test/url.c
514 test_utf8_SOURCES = test/utf8.c
515 test_xmlent_SOURCES = test/xmlent.c
516 test_headers_SOURCES = test/headers.c
517
518 AM_LDFLAGS = -no-install
519 LDADD = libvlccore.la \
520         ../compat/libcompat.la
521
522 ###############################################################################
523 # GIT revision
524 ###############################################################################
525
526 BUILT_SOURCES += stamp-revision
527 MAINTAINERCLEANFILES = $(srcdir)/revision.txt $(srcdir)/revision.c
528
529 $(srcdir)/revision.c: $(srcdir)/revision.txt
530         $(AM_V_at)rm -f -- $@
531         $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat $<)\";" \
532                 > $@
533
534 $(srcdir)/revision.txt:
535         $(AM_V_at)$(MAKE) stamp-revision
536         $(AM_V_GEN)touch $@
537
538 stamp-revision:
539         $(AM_V_at)rm -f -- revision.tmp
540         $(AM_V_GEN)if ! git \
541                         --git-dir="$(top_srcdir)/.git/" describe \
542                         --tags --long --match '?.*.*' --always; then \
543                 cat $(srcdir)/revision.txt ; \
544         fi > revision.tmp
545         $(AM_V_at)if diff revision.tmp $(srcdir)/revision.txt >/dev/null 2>&1; then \
546                 rm -f -- revision.tmp; \
547         else \
548                 mv -f -- revision.tmp $(srcdir)/revision.txt; \
549         fi
550 #2>&1
551
552 ###############################################################################
553 # Unit/regression test
554 ###############################################################################
555
556 dist_check_SCRIPTS = check_headers
557
558 check-local:
559         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
560         do \
561                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
562                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
563                 then \
564                         echo "Header $$h not included in test/headers.c!"; \
565                         exit 1; \
566                 fi ; \
567         done
568         $(SHELL) $(srcdir)/check_headers $(pluginsinclude_HEADERS)
569
570 FORCE:
571         @echo "Generated source cannot be phony. Go away." >&2
572         @exit 1
573
574 .PHONY: FORCE