]> git.sesse.net Git - vlc/blob - src/Makefile.am
8507f90ab6a26669dd2531124ec5dd19ebc4c3b0
[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_filter.c \
331         input/stream_memory.c \
332         input/subtitles.c \
333         input/var.c \
334         video_output/video_output.c \
335         video_output/vout_pictures.c \
336         video_output/vout_pictures.h \
337         video_output/video_text.c \
338         video_output/video_widgets.c \
339         video_output/vout_subpictures.c \
340         video_output/vout_intf.c \
341         video_output/vout_internal.h \
342         video_output/vout_control.h \
343         audio_output/aout_internal.h \
344         audio_output/common.c \
345         audio_output/dec.c \
346         audio_output/filters.c \
347         audio_output/input.c \
348         audio_output/mixer.c \
349         audio_output/output.c \
350         audio_output/intf.c \
351         osd/osd.c \
352         osd/osd_text.c \
353         osd/osd_widgets.c \
354         network/acl.c \
355         network/getaddrinfo.c \
356         network/io.c \
357         network/tcp.c \
358         network/udp.c \
359         network/rootbind.c \
360         network/tls.c \
361         network/poll.c \
362         text/charset.c \
363         text/strings.c \
364         text/unicode.c \
365         text/filesystem.c \
366         text/wincp.c \
367         text/iso_lang.c \
368         text/iso-639_def.h \
369         misc/md5.c \
370         misc/rand.c \
371         misc/mtime.c \
372         misc/block.c \
373         misc/es_format.c \
374         modules/modules.h \
375         modules/modules.c \
376         modules/cache.c \
377         modules/entry.c \
378         modules/os.c \
379         misc/threads.c \
380         misc/stats.c \
381         misc/cpu.c \
382         misc/action.c \
383         config/configuration.h \
384         config/core.c \
385         config/dirs.c \
386         config/chain.c \
387         config/file.c \
388         config/intf.c \
389         config/cmdline.c \
390         misc/events.c \
391         misc/image.c \
392         misc/messages.c \
393         misc/objects.c \
394         misc/variables.h \
395         misc/variables.c \
396         misc/error.c \
397         misc/update.h \
398         misc/update.c \
399         misc/xml.c \
400         misc/devices.c \
401         extras/libc.c \
402         misc/filter_chain.c \
403         $(NULL)
404
405 SOURCES_libvlc_httpd = \
406         network/httpd.c \
407         $(NULL)
408
409 SOURCES_libvlc_sout = \
410         stream_output/stream_output.c \
411         stream_output/stream_output.h \
412         stream_output/announce.c \
413         stream_output/sap.c \
414         stream_output/sdp.c \
415         $(NULL)
416
417 SOURCES_libvlc_vlm = \
418         input/vlm.c \
419         input/vlmshell.c \
420         $(NULL)
421
422 SOURCES_libvlc = \
423         $(SOURCES_libvlc_common) \
424         $(OPT_SOURCES_libvlc_beos) \
425         $(OPT_SOURCES_libvlc_darwin) \
426         $(OPT_SOURCES_libvlc_win32) \
427         $(OPT_SOURCES_libvlc_dirent) \
428         $(OPT_SOURCES_libvlc_getopt) \
429         $(NULL)
430
431 SOURCES_libvlc_control = \
432         control/libvlc_internal.h \
433         control/core.c \
434         control/log.c \
435         control/playlist.c \
436         control/vlm.c \
437         control/video.c \
438         control/audio.c \
439         control/event.c \
440         control/flat_media_list_view.c \
441         control/hierarchical_media_list_view.c \
442         control/hierarchical_node_media_list_view.c \
443         control/media.c \
444         control/media_player.c \
445         control/media_list.c \
446         control/media_list_path.h \
447         control/media_list_player.c \
448         control/media_list_view.c \
449         control/media_library.c \
450         control/mediacontrol_internal.h \
451         control/mediacontrol_core.c \
452         control/mediacontrol_util.c \
453         control/mediacontrol_audio_video.c \
454         control/media_discoverer.c
455
456 ###############################################################################
457 # Stamp rules
458 ###############################################################################
459
460 misc/revision.c:
461         rm -f -- $@ $@.tmp
462         echo "/* AUTOGENERATED FILE - DO NOT EDIT */" > $@.tmp
463         REVISION="$$(cd "$(top_srcdir)"; git describe 2>/dev/null || echo exported)"; \
464         echo "const char psz_vlc_changeset[] = \"$$REVISION\";" >> $@.tmp
465         mv -f -- $@.tmp $@
466
467
468 ###############################################################################
469 # Unit/regression test
470 ###############################################################################
471
472 dist_check_SCRIPTS = check_symbols check_headers
473 TESTS = check_symbols
474
475 check-local:
476         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
477         do \
478                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
479                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
480                 then \
481                         echo "Header $$h not included in test/headers.c!"; \
482                         exit 1; \
483                 fi ; \
484         done
485         $(srcdir)/check_headers $(pkginclude_HEADERS)
486         $(srcdir)/check_headers $(pluginsinclude_HEADERS)
487
488 FORCE:
489         @echo "Generated source cannot be phony. Go away." >&2
490         @exit 1
491
492 .PHONY: FORCE