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