]> git.sesse.net Git - vlc/blob - src/Makefile.am
android: add libvlc specific file
[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         -DPKGDATADIR=\"$(vlcdatadir)\" \
171         -DPKGLIBDIR=\"$(vlclibdir)\"
172 AM_CFLAGS = $(CFLAGS_libvlccore)
173 if HAVE_DYNAMIC_PLUGINS
174 AM_CPPFLAGS += -DHAVE_DYNAMIC_PLUGINS
175 endif
176 if HAVE_DBUS
177 AM_CPPFLAGS += -DHAVE_DBUS
178 AM_CFLAGS += $(DBUS_CFLAGS)
179 endif
180
181 libvlccore_la_SOURCES = $(SOURCES_libvlc)
182 libvlccore_la_LDFLAGS = \
183         -no-undefined \
184         $(LDFLAGS_libvlccore) \
185         -no-undefined \
186         -export-symbols $(srcdir)/libvlccore.sym \
187         -version-info 5:0:0
188 libvlccore_la_LIBADD = $(LIBS_libvlccore) \
189         ../compat/libcompat.la \
190         $(LTLIBINTL) $(LTLIBICONV) \
191         $(IDN_LIBS) $(LIBPTHREAD) $(SOCKET_LIBS) $(LIBDL) $(LIBM)
192 libvlccore_la_DEPENDENCIES = libvlccore.sym
193 if HAVE_WIN32
194 libvlccore_la_DEPENDENCIES += libvlc_win32_rc.$(OBJEXT)
195 libvlccore_la_LDFLAGS += -Wl,libvlc_win32_rc.$(OBJEXT) -avoid-version
196 endif
197 if HAVE_DBUS
198 libvlccore_la_LIBADD += $(DBUS_LIBS)
199 endif
200
201 libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc
202         $(WINDRES) --include-dir $(top_srcdir)/share --include-dir $(top_srcdir)/extras/package/win32 -i $< -o $@
203
204 EXTRA_libvlccore_la_SOURCES = \
205         $(SOURCES_libvlc_darwin) \
206         $(SOURCES_libvlc_android) \
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_ANDROID
219 libvlccore_la_SOURCES += $(SOURCES_libvlc_android)
220 else
221 if HAVE_LINUX
222 libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
223 else
224 if HAVE_WIN32
225 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
226 else
227 if HAVE_SYMBIAN
228 #libvlccore_la_SOURCES += $(SOURCES_libvlc_symbian)
229 else
230 if HAVE_OS2
231 libvlccore_la_SOURCES += $(SOURCES_libvlc_os2)
232 else
233 libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
234 endif
235 endif
236 endif
237 endif
238 endif
239 endif
240 if BUILD_HTTPD
241 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
242 endif
243 if ENABLE_SOUT
244 libvlccore_la_SOURCES += $(SOURCES_libvlc_sout)
245 if ENABLE_VLM
246 libvlccore_la_SOURCES += $(SOURCES_libvlc_vlm)
247 endif
248 endif
249
250 SOURCES_libvlc_darwin = \
251         posix/darwin_dirs.c \
252         posix/filesystem.c \
253         posix/plugin.c \
254         posix/thread.c \
255         posix/timer.c \
256         posix/darwin_specific.c \
257         posix/rand.c \
258         $(NULL)
259
260 SOURCES_libvlc_android = \
261         android/dirs.c \
262         posix/filesystem.c \
263         posix/plugin.c \
264         posix/thread.c \
265         posix/timer.c \
266         posix/linux_cpu.c \
267         posix/linux_specific.c \
268         posix/specific.c \
269         posix/rand.c \
270         $(NULL)
271
272 SOURCES_libvlc_linux = \
273         posix/dirs.c \
274         posix/filesystem.c \
275         posix/plugin.c \
276         posix/thread.c \
277         posix/timer.c \
278         posix/linux_cpu.c \
279         posix/linux_specific.c \
280         posix/specific.c \
281         posix/rand.c \
282         $(NULL)
283
284 SOURCES_libvlc_win32 = \
285         win32/dirs.c \
286         win32/filesystem.c \
287         win32/plugin.c \
288         win32/thread.c \
289         win32/specific.c \
290         win32/winsock.c \
291         win32/rand.c \
292         $(NULL)
293
294 SOURCES_libvlc_symbian = \
295         symbian/path.cpp \
296         symbian/dirs.c \
297         win32/plugin.c \
298         posix/rand.c \
299         $(NULL)
300
301 SOURCES_libvlc_os2 = \
302         os2/getaddrinfo.c \
303         os2/dirs.c \
304         os2/filesystem.c \
305         os2/plugin.c \
306         os2/thread.c \
307         os2/specific.c \
308         os2/rand.c \
309         $(NULL)
310
311 SOURCES_libvlc_other = \
312         posix/dirs.c \
313         posix/filesystem.c \
314         posix/thread.c \
315         posix/timer.c \
316         posix/plugin.c \
317         posix/specific.c \
318         posix/rand.c \
319         $(NULL)
320
321 SOURCES_libvlc_common = \
322         libvlc.c \
323         libvlc.h \
324         libvlc-module.c \
325         missing.c \
326         revision.c \
327         version.c \
328         interface/dialog.c \
329         interface/interface.c \
330         playlist/playlist_internal.h \
331         playlist/art.c \
332         playlist/art.h \
333         playlist/thread.c \
334         playlist/control.c \
335         playlist/engine.c \
336         playlist/fetcher.c \
337         playlist/fetcher.h \
338         playlist/sort.c \
339         playlist/loadsave.c \
340         playlist/preparser.c \
341         playlist/preparser.h \
342         playlist/tree.c \
343         playlist/item.c \
344         playlist/search.c \
345         playlist/services_discovery.c \
346         input/item.c \
347         input/access.c \
348         input/clock.c \
349         input/control.c \
350         input/decoder.c \
351         input/decoder_synchro.c \
352         input/demux.c \
353         input/es_out.c \
354         input/es_out_timeshift.c \
355         input/event.c \
356         input/input.c \
357         input/info.h \
358         input/meta.c \
359         input/access.h \
360         input/clock.h \
361         input/decoder.h \
362         input/demux.h \
363         input/es_out.h \
364         input/es_out_timeshift.h \
365         input/event.h \
366         input/item.h \
367         input/stream.h \
368         input/input_internal.h \
369         input/input_interface.h \
370         input/vlm_internal.h \
371         input/vlm_event.h \
372         input/resource.h \
373         input/resource.c \
374         input/stats.c \
375         input/stream.c \
376         input/stream_demux.c \
377         input/stream_filter.c \
378         input/stream_memory.c \
379         input/subtitles.c \
380         input/var.c \
381         video_output/chrono.h \
382         video_output/control.c \
383         video_output/control.h \
384         video_output/display.c \
385         video_output/display.h \
386         video_output/event.h \
387         video_output/inhibit.c \
388         video_output/inhibit.h \
389         video_output/interlacing.c \
390         video_output/interlacing.h \
391         video_output/snapshot.c \
392         video_output/snapshot.h \
393         video_output/statistic.h \
394         video_output/postprocessing.c \
395         video_output/postprocessing.h \
396         video_output/video_output.c \
397         video_output/video_text.c \
398         video_output/video_epg.c \
399         video_output/video_widgets.c \
400         video_output/vout_subpictures.c \
401         video_output/window.c \
402         video_output/opengl.c \
403         video_output/vout_intf.c \
404         video_output/vout_internal.h \
405         video_output/vout_control.h \
406         video_output/vout_wrapper.c \
407         audio_output/aout_internal.h \
408         audio_output/common.c \
409         audio_output/dec.c \
410         audio_output/filters.c \
411         audio_output/input.c \
412         audio_output/output.c \
413         audio_output/volume.c \
414         audio_output/intf.c \
415         osd/osd.c \
416         osd/osd_text.c \
417         network/getaddrinfo.c \
418         network/io.c \
419         network/tcp.c \
420         network/udp.c \
421         network/rootbind.c \
422         network/tls.c \
423         text/charset.c \
424         text/strings.c \
425         text/unicode.c \
426         text/url.c \
427         text/filesystem.c \
428         text/iso_lang.c \
429         text/iso-639_def.h \
430         misc/md5.c \
431         misc/probe.c \
432         misc/rand.c \
433         misc/mtime.c \
434         misc/block.c \
435         misc/fourcc.c \
436         misc/es_format.c \
437         misc/picture.c \
438         misc/picture_fifo.c \
439         misc/picture_pool.c \
440         modules/modules.h \
441         modules/modules.c \
442         modules/bank.c \
443         modules/cache.c \
444         modules/entry.c \
445         modules/textdomain.c \
446         misc/threads.c \
447         misc/cpu.c \
448         misc/epg.c \
449         misc/exit.c \
450         config/configuration.h \
451         config/core.c \
452         config/chain.c \
453         config/file.c \
454         config/help.c \
455         config/intf.c \
456         config/keys.c \
457         config/cmdline.c \
458         config/getopt.c \
459         config/vlc_getopt.h \
460         misc/events.c \
461         misc/image.c \
462         misc/messages.c \
463         misc/mime.c \
464         misc/objects.c \
465         misc/variables.h \
466         misc/variables.c \
467         misc/error.c \
468         misc/update.h \
469         misc/update.c \
470         misc/update_crypto.c \
471         misc/xml.c \
472         misc/media_library.c \
473         extras/libc.c \
474         extras/tdestroy.c \
475         misc/filter.c \
476         misc/filter_chain.c \
477         misc/http_auth.c \
478         misc/sql.c \
479         misc/text_style.c \
480         misc/subpicture.c \
481         misc/subpicture.h \
482         $(NULL)
483
484 SOURCES_libvlc_httpd = \
485         network/httpd.c \
486         $(NULL)
487
488 SOURCES_libvlc_sout = \
489         stream_output/stream_output.c \
490         stream_output/stream_output.h \
491         stream_output/announce.c \
492         stream_output/sap.c \
493         stream_output/sdp.c \
494         $(NULL)
495
496 SOURCES_libvlc_vlm = \
497         input/vlm.c \
498         input/vlm_event.c \
499         input/vlmshell.c \
500         $(NULL)
501
502 SOURCES_libvlc = \
503         $(SOURCES_libvlc_common) \
504         $(NULL)
505
506 # Unit/regression tests
507 #
508 check_PROGRAMS = \
509         test_block \
510         test_dictionary \
511         test_i18n_atof \
512         test_md5 \
513         test_timer \
514         test_url \
515         test_utf8 \
516         test_xmlent \
517         test_headers
518
519 TESTS = $(check_PROGRAMS)
520
521 test_block_SOURCES = test/block_test.c
522 test_block_LDADD = $(LDADD) $(LIBS_libvlccore)
523 test_block_DEPENDENCIES =
524
525 test_dictionary_SOURCES = test/dictionary.c
526 test_i18n_atof_SOURCES = test/i18n_atof.c
527 test_md5_SOURCES = test/md5.c
528 test_timer_SOURCES = test/timer.c
529 test_url_SOURCES = test/url.c
530 test_utf8_SOURCES = test/utf8.c
531 test_xmlent_SOURCES = test/xmlent.c
532 test_headers_SOURCES = test/headers.c
533
534 AM_LDFLAGS = -no-install
535 LDADD = libvlccore.la \
536         ../compat/libcompat.la
537
538 ###############################################################################
539 # GIT revision
540 ###############################################################################
541
542 BUILT_SOURCES += stamp-revision
543 MAINTAINERCLEANFILES = $(srcdir)/revision.txt $(srcdir)/revision.c
544
545 $(srcdir)/revision.c: $(srcdir)/revision.txt
546         $(AM_V_at)rm -f -- $@
547         $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat $<)\";" \
548                 > $@
549
550 $(srcdir)/revision.txt:
551         $(AM_V_at)$(MAKE) stamp-revision
552         $(AM_V_GEN)touch $@
553
554 stamp-revision:
555         $(AM_V_at)rm -f -- revision.tmp
556         $(AM_V_GEN)if ! git \
557                         --git-dir="$(top_srcdir)/.git/" describe \
558                         --tags --long --match '?.*.*' --always; then \
559                 cat $(srcdir)/revision.txt ; \
560         fi > revision.tmp
561         $(AM_V_at)if diff revision.tmp $(srcdir)/revision.txt >/dev/null 2>&1; then \
562                 rm -f -- revision.tmp; \
563         else \
564                 mv -f -- revision.tmp $(srcdir)/revision.txt; \
565         fi
566 #2>&1
567
568 ###############################################################################
569 # Unit/regression test
570 ###############################################################################
571
572 dist_check_SCRIPTS = check_headers
573
574 check-local:
575         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
576         do \
577                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
578                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
579                 then \
580                         echo "Header $$h not included in test/headers.c!"; \
581                         exit 1; \
582                 fi ; \
583         done
584         $(SHELL) $(srcdir)/check_headers $(pluginsinclude_HEADERS)
585
586 FORCE:
587         @echo "Generated source cannot be phony. Go away." >&2
588         @exit 1
589
590 .PHONY: FORCE