]> git.sesse.net Git - vlc/blob - src/Makefile.am
Always build and use "our" getopt
[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 \
10         misc/beos_specific.cpp \
11         libvlc.pc.in \
12         vlc-plugin.pc.in \
13         libvlc.sym \
14         libvlccore.sym
15
16 BUILT_SOURCES = ../include/vlc_about.h
17 CLEANFILES = $(BUILT_SOURCES)
18
19 SUFFIXES = .pc.in .pc .rc.in .rc
20
21 ###############################################################################
22 # Headers
23 ###############################################################################
24
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_events.h \
32         ../include/vlc/libvlc_media.h \
33         ../include/vlc/libvlc_media_discoverer.h \
34         ../include/vlc/libvlc_media_library.h \
35         ../include/vlc/libvlc_media_list.h \
36         ../include/vlc/libvlc_media_list_player.h \
37         ../include/vlc/libvlc_media_player.h \
38         ../include/vlc/libvlc_structures.h \
39         ../include/vlc/libvlc_vlm.h \
40         $(NULL)
41
42 pluginsinclude_HEADERS = \
43         ../include/vlc_access.h \
44         ../include/vlc_acl.h \
45         ../include/vlc_aout.h \
46         ../include/vlc_aout_mixer.h \
47         ../include/vlc_arrays.h \
48         ../include/vlc_art_finder.h \
49         ../include/vlc_avcodec.h \
50         ../include/vlc_bits.h \
51         ../include/vlc_block.h \
52         ../include/vlc_block_helper.h \
53         ../include/vlc_charset.h \
54         ../include/vlc_codec.h \
55         ../include/vlc_common.h \
56         ../include/vlc_config.h \
57         ../include/vlc_config_cat.h \
58         ../include/vlc_configuration.h \
59         ../include/vlc_cpu.h \
60         ../include/vlc_dialog.h \
61         ../include/vlc_demux.h \
62         ../include/vlc_epg.h \
63         ../include/vlc_es.h \
64         ../include/vlc_es_out.h \
65         ../include/vlc_events.h \
66         ../include/vlc_filter.h \
67         ../include/vlc_fourcc.h \
68         ../include/vlc_fs.h \
69         ../include/vlc_gcrypt.h \
70         ../include/vlc_http.h \
71         ../include/vlc_httpd.h \
72         ../include/vlc_image.h \
73         ../include/vlc_inhibit.h \
74         ../include/vlc_input.h \
75         ../include/vlc_input_item.h \
76         ../include/vlc_main.h \
77         ../include/vlc_md5.h \
78         ../include/vlc_messages.h \
79         ../include/vlc_meta.h \
80         ../include/vlc_modules.h \
81         ../include/vlc_mouse.h \
82         ../include/vlc_mtime.h \
83         ../include/vlc_objects.h \
84         ../include/vlc_picture.h \
85         ../include/vlc_picture_fifo.h \
86         ../include/vlc_picture_pool.h \
87         ../include/vlc_playlist.h \
88         ../include/vlc_plugin.h \
89         ../include/vlc_probe.h \
90         ../include/vlc_rand.h \
91         ../include/vlc_services_discovery.h \
92         ../include/vlc_sql.h \
93         ../include/vlc_sout.h \
94         ../include/vlc_stream.h \
95         ../include/vlc_strings.h \
96         ../include/vlc_subpicture.h \
97         ../include/vlc_threads.h \
98         ../include/vlc_url.h \
99         ../include/vlc_variables.h \
100         ../include/vlc_vlm.h \
101         ../include/vlc_video_splitter.h \
102         ../include/vlc_vout.h \
103         ../include/vlc_vout_display.h \
104         ../include/vlc_vout_opengl.h \
105         ../include/vlc_vout_window.h \
106         ../include/vlc_xml.h \
107         $(NULL)
108
109 noinst_HEADERS = \
110         ../include/vlc_codec_synchro.h \
111         ../include/vlc_codecs.h \
112         ../include/vlc_extensions.h \
113         ../include/vlc_fixups.h \
114         ../include/vlc_interface.h \
115         ../include/vlc_intf_strings.h \
116         ../include/vlc_iso_lang.h \
117         ../include/vlc_keys.h \
118         ../include/vlc_memory.h \
119         ../include/vlc_network.h \
120         ../include/vlc_osd.h \
121         ../include/vlc_pgpkey.h \
122         ../include/vlc_tls.h \
123         ../include/vlc_update.h \
124         ../include/vlc_vod.h \
125         ../include/vlc_vout_wrapper.h \
126         $(NULL)
127
128 ../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
129         $(AM_V_at)rm -f -- "$@.tmp"
130         $(AM_V_at)mkdir -p -- ../include
131         $(AM_V_GEN)(echo "/* Automatically generated file - DO NOT EDIT */" && \
132         echo "static const char psz_license[] =" && \
133         sed 's/"/\\"/g;s/^.*$$/\"&\\n\"/' "$(top_srcdir)/COPYING" && \
134         echo ";" && \
135         echo "static const char psz_thanks[] =" && \
136         sed '/\$$Id:/d;s/"/\\"/g;s/<.*.> //;s/^.*$$/\"&\\n\"/' \
137                 "$(top_srcdir)/THANKS" && \
138         echo ";" && \
139         echo "static const char psz_authors[] =" && \
140         sed -n '/^N: /{;s///;s/"/\\"/g;s/^.*$$/\"&\\n\"/;p;}' \
141                 "$(top_srcdir)/AUTHORS" && \
142         echo ";") >> "$@.tmp"
143         $(AM_V_at)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         $(AM_V_GEN)cd "$(top_builddir)" && \
155         $(SHELL) ./config.status --file="src/$@"
156
157 ##############################################################################
158 # Windows resource files
159 ##############################################################################
160
161 if HAVE_WIN32
162 noinst_DATA = libvlc_win32_rc.rc
163 endif
164 EXTRA_DIST += libvlc_win32_rc.rc.in
165
166 .rc.in.rc: $(top_builddir)/config.status
167         cd "$(top_builddir)" && \
168         $(SHELL) ./config.status --file="src/$@"
169
170 ###############################################################################
171 # Building libvlc
172 ###############################################################################
173
174 lib_LTLIBRARIES = libvlccore.la libvlc.la
175
176 AM_LDFLAGS = -no-undefined
177 if HAVE_WIN32
178 AM_LDFLAGS += -avoid-version
179 endif
180 if HAVE_WINCE
181 AM_LDFLAGS += -avoid-version
182 endif
183
184 libvlccore_la_SOURCES = $(SOURCES_libvlc)
185 nodist_libvlccore_la_SOURCES = revision.c
186 libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlccore` \
187         -DMODULE_STRING=\"main\" \
188         -DLOCALEDIR=\"$(localedir)\" \
189         -DSYSCONFDIR=\"$(sysconfdir)\" \
190         -DDATA_PATH=\"$(vlcdatadir)\" \
191         -DLIBDIR=\"$(libdir)\" \
192         -DPKGLIBDIR=\"$(vlclibdir)\" \
193         -DPLUGIN_PATH=PKGLIBDIR\"/modules\"
194 libvlccore_la_LDFLAGS = `$(VLC_CONFIG) --ldflags libvlccore` $(AM_LDFLAGS) \
195         -no-undefined \
196         -export-symbols $(srcdir)/libvlccore.sym \
197         -version-info 4:0:0
198 libvlccore_la_LIBADD = `$(VLC_CONFIG) -libs libvlccore` $(AM_LIBADD) \
199         $(LTLIBINTL) ../compat/libcompat.la
200 libvlccore_la_DEPENDENCIES = libvlccore.sym
201 if HAVE_WIN32
202 libvlccore_la_DEPENDENCIES += libvlc_win32_rc.$(OBJEXT)
203 libvlccore_la_LDFLAGS += -Wl,libvlc_win32_rc.$(OBJEXT)
204 endif
205
206 libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc
207         $(WINDRES) --include-dir $(top_srcdir)/share -i $< -o $@
208
209 libvlc_la_SOURCES = $(SOURCES_libvlc_control)
210 nodist_libvlc_la_SOURCES = revision.c
211 libvlc_la_LIBADD = `$(VLC_CONFIG) -libs libvlc` \
212         libvlccore.la ../compat/libcompat.la
213 libvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlc`
214 libvlc_la_LDFLAGS = $(AM_LDFLAGS) `$(VLC_CONFIG) --ldflags libvlc` \
215         -version-info 5:0:0 \
216         -export-symbols $(srcdir)/libvlc.sym
217 libvlc_la_DEPENDENCIES = libvlc.sym libvlccore.la
218 if HAVE_WIN32
219 libvlc_la_DEPENDENCIES += $(DATA_win32_rc_lib)
220 libvlc_la_LDFLAGS += -Wl,$(DATA_win32_rc_lib)
221 endif
222
223
224 EXTRA_libvlccore_la_SOURCES = \
225         $(SOURCES_libvlc_beos) \
226         $(SOURCES_libvlc_darwin) \
227         $(SOURCES_libvlc_linux) \
228         $(SOURCES_libvlc_win32) \
229         $(SOURCES_libvlc_other) \
230         $(SOURCES_libvlc_dirent) \
231         $(SOURCES_libvlc_httpd) \
232         $(SOURCES_libvlc_sout) \
233         $(SOURCES_libvlc_vlm) \
234         $(NULL)
235 if HAVE_BEOS
236 libvlccore_la_SOURCES += $(SOURCES_libvlc_beos)
237 else
238 if HAVE_DARWIN
239 libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin)
240 else
241 if HAVE_LINUX
242 libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
243 else
244 if HAVE_WIN32
245 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
246 else
247 if HAVE_WINCE
248 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
249 else
250 libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
251 endif
252 endif
253 endif
254 endif
255 endif
256 if BUILD_DIRENT
257 libvlccore_la_SOURCES += $(SOURCES_libvlc_dirent)
258 endif
259 if BUILD_HTTPD
260 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
261 endif
262 if ENABLE_SOUT
263 libvlccore_la_SOURCES += $(SOURCES_libvlc_sout)
264 if ENABLE_VLM
265 libvlccore_la_SOURCES += $(SOURCES_libvlc_vlm)
266 endif
267 endif
268
269 SOURCES_libvlc_beos = \
270         misc/pthread.c \
271         $(NULL)
272
273 SOURCES_libvlc_darwin = \
274         config/dirs_macos.c \
275         misc/pthread.c \
276         misc/darwin_specific.c \
277         $(NULL)
278
279 SOURCES_libvlc_linux = \
280         config/dirs_xdg.c \
281         misc/pthread.c \
282         misc/linux_specific.c \
283         $(NULL)
284
285 SOURCES_libvlc_win32 = \
286         win32/dirs.c \
287         win32/specific.c \
288         win32/thread.c \
289         win32/winsock.c \
290         $(NULL)
291
292 SOURCES_libvlc_other = \
293         config/dirs_xdg.c \
294         misc/pthread.c \
295         misc/not_specific.c
296
297 SOURCES_libvlc_dirent = \
298         extras/dirent.c \
299         $(NULL)
300
301 SOURCES_libvlc_common = \
302         libvlc.c \
303         libvlc.h \
304         libvlc-module.c \
305         missing.c \
306         version.c \
307         interface/dialog.c \
308         interface/interface.c \
309         interface/intf_eject.c \
310         playlist/playlist_internal.h \
311         playlist/art.c \
312         playlist/art.h \
313         playlist/thread.c \
314         playlist/control.c \
315         playlist/engine.c \
316         playlist/fetcher.c \
317         playlist/fetcher.h \
318         playlist/sort.c \
319         playlist/loadsave.c \
320         playlist/preparser.c \
321         playlist/preparser.h \
322         playlist/tree.c \
323         playlist/item.c \
324         playlist/search.c \
325         playlist/services_discovery.c \
326         input/item.c \
327         input/access.c \
328         input/clock.c \
329         input/control.c \
330         input/decoder.c \
331         input/decoder_synchro.c \
332         input/demux.c \
333         input/es_out.c \
334         input/es_out_timeshift.c \
335         input/event.c \
336         input/input.c \
337         input/info.h \
338         input/meta.c \
339         input/access.h \
340         input/clock.h \
341         input/decoder.h \
342         input/demux.h \
343         input/es_out.h \
344         input/es_out_timeshift.h \
345         input/event.h \
346         input/item.h \
347         input/stream.h \
348         input/input_internal.h \
349         input/input_interface.h \
350         input/vlm_internal.h \
351         input/vlm_event.h \
352         input/resource.h \
353         input/resource.c \
354         input/stream.c \
355         input/stream_demux.c \
356         input/stream_filter.c \
357         input/stream_memory.c \
358         input/subtitles.c \
359         input/var.c \
360         video_output/display.c \
361         video_output/display.h \
362         video_output/event.h \
363         video_output/inhibit.c \
364         video_output/inhibit.h \
365         video_output/snapshot.c \
366         video_output/snapshot.h \
367         video_output/statistic.h \
368         video_output/video_output.c \
369         video_output/vout_pictures.c \
370         video_output/vout_pictures.h \
371         video_output/video_text.c \
372         video_output/video_epg.c \
373         video_output/video_widgets.c \
374         video_output/vout_subpictures.c \
375         video_output/window.c \
376         video_output/vout_intf.c \
377         video_output/vout_internal.h \
378         video_output/vout_control.h \
379         audio_output/aout_internal.h \
380         audio_output/common.c \
381         audio_output/dec.c \
382         audio_output/filters.c \
383         audio_output/input.c \
384         audio_output/mixer.c \
385         audio_output/output.c \
386         audio_output/intf.c \
387         osd/osd.c \
388         osd/osd_text.c \
389         osd/osd_widgets.c \
390         network/acl.c \
391         network/getaddrinfo.c \
392         network/io.c \
393         network/tcp.c \
394         network/udp.c \
395         network/rootbind.c \
396         network/tls.c \
397         network/poll.c \
398         text/charset.c \
399         text/strings.c \
400         text/unicode.c \
401         text/filesystem.c \
402         text/iso_lang.c \
403         text/iso-639_def.h \
404         misc/md5.c \
405         misc/probe.c \
406         misc/rand.c \
407         misc/mtime.c \
408         misc/block.c \
409         misc/fourcc.c \
410         misc/es_format.c \
411         misc/picture_fifo.c \
412         misc/picture_pool.c \
413         modules/modules.h \
414         modules/modules.c \
415         modules/cache.c \
416         modules/entry.c \
417         modules/os.c \
418         modules/textdomain.c \
419         misc/threads.c \
420         misc/stats.c \
421         misc/cpu.c \
422         misc/action.c \
423         misc/epg.c \
424         config/configuration.h \
425         config/core.c \
426         config/chain.c \
427         config/file.c \
428         config/intf.c \
429         config/keys.c \
430         config/cmdline.c \
431         config/dirs.c \
432         misc/events.c \
433         misc/image.c \
434         misc/messages.c \
435         misc/objects.c \
436         misc/variables.h \
437         misc/variables.c \
438         misc/error.c \
439         misc/update.h \
440         misc/update.c \
441         misc/update_crypto.c \
442         misc/xml.c \
443         extras/libc.c \
444         extras/tdestroy.c \
445         misc/filter.c \
446         misc/filter_chain.c \
447         misc/http_auth.c \
448         misc/sql.c \
449         extras/getopt.c \
450         extras/getopt.h \
451         extras/getopt1.c \
452         $(NULL)
453
454 SOURCES_libvlc_httpd = \
455         network/httpd.c \
456         $(NULL)
457
458 SOURCES_libvlc_sout = \
459         stream_output/stream_output.c \
460         stream_output/stream_output.h \
461         stream_output/announce.c \
462         stream_output/sap.c \
463         stream_output/sdp.c \
464         $(NULL)
465
466 SOURCES_libvlc_vlm = \
467         input/vlm.c \
468         input/vlm_event.c \
469         input/vlmshell.c \
470         $(NULL)
471
472 SOURCES_libvlc = \
473         $(SOURCES_libvlc_common) \
474         $(OPT_SOURCES_libvlc_beos) \
475         $(OPT_SOURCES_libvlc_darwin) \
476         $(OPT_SOURCES_libvlc_win32) \
477         $(OPT_SOURCES_libvlc_dirent) \
478         $(NULL)
479
480 SOURCES_libvlc_control = \
481         control/libvlc_internal.h \
482         control/event_internal.h \
483         control/media_internal.h \
484         control/media_list_internal.h \
485         control/media_player_internal.h \
486         control/core.c \
487         control/error.c \
488         control/log.c \
489         control/playlist.c \
490         control/vlm.c \
491         control/video.c \
492         control/audio.c \
493         control/event.c \
494         control/event_async.c \
495         control/media.c \
496         control/media_player.c \
497         control/media_list.c \
498         control/media_list_path.h \
499         control/media_list_player.c \
500         control/media_library.c \
501         control/media_discoverer.c
502
503 ###############################################################################
504 # GIT revision
505 ###############################################################################
506
507 BUILT_SOURCES += stamp-revision
508 CLEANFILES += revision.txt revision.c
509
510 revision.c: revision.txt
511         $(AM_V_at)rm -f -- revision.c
512         $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat revision.txt)\";" \
513                 > revision.c
514
515 revision.txt: Makefile.am
516         $(AM_V_at)$(MAKE) stamp-revision
517         $(AM_V_GEN)touch revision.txt
518
519 stamp-revision:
520         $(AM_V_at)rm -f -- revision.tmp
521         $(AM_V_GEN)(git --git-dir="$(top_srcdir)/.git/" describe --tags --long \
522                 --match '?.*.*' --always || echo exported) > revision.tmp
523         $(AM_V_at)if diff revision.tmp revision.txt >/dev/null 2>&1; then \
524                 rm -f -- revision.tmp; \
525         else \
526                 mv -f -- revision.tmp revision.txt; \
527         fi 2>&1
528
529 ###############################################################################
530 # Unit/regression test
531 ###############################################################################
532
533 dist_check_SCRIPTS = check_symbols check_headers
534 TESTS = check_symbols
535
536 check_DATA = libvlc-headers.sym libvlc-sorted.sym
537 CLEANFILES += $(check_DATA)
538
539 libvlc-sorted.sym: libvlccore.sym
540         rm -f libvlc-sorted.sym
541         sort -fdu < "$(srcdir)/libvlccore.sym" > libvlc-sorted.sym
542
543 libvlc-headers.sym:
544         rm -f libvlc-headers.sym
545         cat ${srcdir}/../include/vlc_*.h ${srcdir}/control/*.h | \
546         sed -n -e 's/^[ ]*VLC_EXPORT[ ]*([^,]*,\([^,]*\),.*/\1/p' | \
547         sed -e 's/[^a-zA-Z0-9_]*//' | \
548         sort -fdu > libvlc-headers.sym
549
550 .PHONY: libvlc-headers.sym
551
552 check-local:
553         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
554         do \
555                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
556                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
557                 then \
558                         echo "Header $$h not included in test/headers.c!"; \
559                         exit 1; \
560                 fi ; \
561         done
562         $(srcdir)/check_headers $(pkginclude_HEADERS)
563         $(srcdir)/check_headers $(pluginsinclude_HEADERS)
564
565 FORCE:
566         @echo "Generated source cannot be phony. Go away." >&2
567         @exit 1
568
569 .PHONY: FORCE