]> git.sesse.net Git - vlc/blob - src/Makefile.am
Remove legacy nice target
[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_getopt) \
232         $(SOURCES_libvlc_httpd) \
233         $(SOURCES_libvlc_sout) \
234         $(SOURCES_libvlc_vlm) \
235         $(NULL)
236 if HAVE_BEOS
237 libvlccore_la_SOURCES += $(SOURCES_libvlc_beos)
238 else
239 if HAVE_DARWIN
240 libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin)
241 else
242 if HAVE_LINUX
243 libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
244 else
245 if HAVE_WIN32
246 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
247 else
248 if HAVE_WINCE
249 libvlccore_la_SOURCES += $(SOURCES_libvlc_win32)
250 else
251 libvlccore_la_SOURCES += $(SOURCES_libvlc_other)
252 endif
253 endif
254 endif
255 endif
256 endif
257 if BUILD_DIRENT
258 libvlccore_la_SOURCES += $(SOURCES_libvlc_dirent)
259 endif
260 if BUILD_GETOPT
261 libvlccore_la_SOURCES += $(SOURCES_libvlc_getopt)
262 endif
263 if BUILD_HTTPD
264 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
265 endif
266 if ENABLE_SOUT
267 libvlccore_la_SOURCES += $(SOURCES_libvlc_sout)
268 if ENABLE_VLM
269 libvlccore_la_SOURCES += $(SOURCES_libvlc_vlm)
270 endif
271 endif
272
273 SOURCES_libvlc_beos = \
274         misc/pthread.c \
275         $(NULL)
276
277 SOURCES_libvlc_darwin = \
278         config/dirs_macos.c \
279         misc/pthread.c \
280         misc/darwin_specific.c \
281         $(NULL)
282
283 SOURCES_libvlc_linux = \
284         config/dirs_xdg.c \
285         misc/pthread.c \
286         misc/linux_specific.c \
287         $(NULL)
288
289 SOURCES_libvlc_win32 = \
290         win32/dirs.c \
291         win32/specific.c \
292         win32/thread.c \
293         win32/winsock.c \
294         $(NULL)
295
296 SOURCES_libvlc_other = \
297         config/dirs_xdg.c \
298         misc/pthread.c \
299         misc/not_specific.c
300
301 SOURCES_libvlc_dirent = \
302         extras/dirent.c \
303         $(NULL)
304
305 SOURCES_libvlc_getopt = \
306         extras/getopt.c \
307         extras/getopt.h \
308         extras/getopt1.c \
309         $(NULL)
310
311 SOURCES_libvlc_common = \
312         libvlc.c \
313         libvlc.h \
314         libvlc-module.c \
315         missing.c \
316         version.c \
317         interface/dialog.c \
318         interface/interface.c \
319         interface/intf_eject.c \
320         playlist/playlist_internal.h \
321         playlist/art.c \
322         playlist/art.h \
323         playlist/thread.c \
324         playlist/control.c \
325         playlist/engine.c \
326         playlist/fetcher.c \
327         playlist/fetcher.h \
328         playlist/sort.c \
329         playlist/loadsave.c \
330         playlist/preparser.c \
331         playlist/preparser.h \
332         playlist/tree.c \
333         playlist/item.c \
334         playlist/search.c \
335         playlist/services_discovery.c \
336         input/item.c \
337         input/access.c \
338         input/clock.c \
339         input/control.c \
340         input/decoder.c \
341         input/decoder_synchro.c \
342         input/demux.c \
343         input/es_out.c \
344         input/es_out_timeshift.c \
345         input/event.c \
346         input/input.c \
347         input/meta.c \
348         input/access.h \
349         input/clock.h \
350         input/decoder.h \
351         input/demux.h \
352         input/es_out.h \
353         input/es_out_timeshift.h \
354         input/event.h \
355         input/item.h \
356         input/stream.h \
357         input/input_internal.h \
358         input/input_interface.h \
359         input/vlm_internal.h \
360         input/vlm_event.h \
361         input/resource.h \
362         input/resource.c \
363         input/stream.c \
364         input/stream_demux.c \
365         input/stream_filter.c \
366         input/stream_memory.c \
367         input/subtitles.c \
368         input/var.c \
369         video_output/display.c \
370         video_output/display.h \
371         video_output/event.h \
372         video_output/inhibit.c \
373         video_output/inhibit.h \
374         video_output/snapshot.c \
375         video_output/snapshot.h \
376         video_output/statistic.h \
377         video_output/video_output.c \
378         video_output/vout_pictures.c \
379         video_output/vout_pictures.h \
380         video_output/video_text.c \
381         video_output/video_epg.c \
382         video_output/video_widgets.c \
383         video_output/vout_subpictures.c \
384         video_output/window.c \
385         video_output/vout_intf.c \
386         video_output/vout_internal.h \
387         video_output/vout_control.h \
388         audio_output/aout_internal.h \
389         audio_output/common.c \
390         audio_output/dec.c \
391         audio_output/filters.c \
392         audio_output/input.c \
393         audio_output/mixer.c \
394         audio_output/output.c \
395         audio_output/intf.c \
396         osd/osd.c \
397         osd/osd_text.c \
398         osd/osd_widgets.c \
399         network/acl.c \
400         network/getaddrinfo.c \
401         network/io.c \
402         network/tcp.c \
403         network/udp.c \
404         network/rootbind.c \
405         network/tls.c \
406         network/poll.c \
407         text/charset.c \
408         text/strings.c \
409         text/unicode.c \
410         text/filesystem.c \
411         text/iso_lang.c \
412         text/iso-639_def.h \
413         misc/md5.c \
414         misc/probe.c \
415         misc/rand.c \
416         misc/mtime.c \
417         misc/block.c \
418         misc/fourcc.c \
419         misc/es_format.c \
420         misc/picture_fifo.c \
421         misc/picture_pool.c \
422         modules/modules.h \
423         modules/modules.c \
424         modules/cache.c \
425         modules/entry.c \
426         modules/os.c \
427         modules/textdomain.c \
428         misc/threads.c \
429         misc/stats.c \
430         misc/cpu.c \
431         misc/action.c \
432         misc/epg.c \
433         config/configuration.h \
434         config/core.c \
435         config/chain.c \
436         config/file.c \
437         config/intf.c \
438         config/keys.c \
439         config/cmdline.c \
440         config/dirs.c \
441         misc/events.c \
442         misc/image.c \
443         misc/messages.c \
444         misc/objects.c \
445         misc/variables.h \
446         misc/variables.c \
447         misc/error.c \
448         misc/update.h \
449         misc/update.c \
450         misc/update_crypto.c \
451         misc/xml.c \
452         extras/libc.c \
453         extras/tdestroy.c \
454         misc/filter.c \
455         misc/filter_chain.c \
456         misc/http_auth.c \
457         misc/sql.c \
458         $(NULL)
459
460 SOURCES_libvlc_httpd = \
461         network/httpd.c \
462         $(NULL)
463
464 SOURCES_libvlc_sout = \
465         stream_output/stream_output.c \
466         stream_output/stream_output.h \
467         stream_output/announce.c \
468         stream_output/sap.c \
469         stream_output/sdp.c \
470         $(NULL)
471
472 SOURCES_libvlc_vlm = \
473         input/vlm.c \
474         input/vlm_event.c \
475         input/vlmshell.c \
476         $(NULL)
477
478 SOURCES_libvlc = \
479         $(SOURCES_libvlc_common) \
480         $(OPT_SOURCES_libvlc_beos) \
481         $(OPT_SOURCES_libvlc_darwin) \
482         $(OPT_SOURCES_libvlc_win32) \
483         $(OPT_SOURCES_libvlc_dirent) \
484         $(OPT_SOURCES_libvlc_getopt) \
485         $(NULL)
486
487 SOURCES_libvlc_control = \
488         control/libvlc_internal.h \
489         control/event_internal.h \
490         control/media_internal.h \
491         control/media_list_internal.h \
492         control/media_player_internal.h \
493         control/core.c \
494         control/error.c \
495         control/log.c \
496         control/playlist.c \
497         control/vlm.c \
498         control/video.c \
499         control/audio.c \
500         control/event.c \
501         control/event_async.c \
502         control/media.c \
503         control/media_player.c \
504         control/media_list.c \
505         control/media_list_path.h \
506         control/media_list_player.c \
507         control/media_library.c \
508         control/media_discoverer.c
509
510 ###############################################################################
511 # GIT revision
512 ###############################################################################
513
514 BUILT_SOURCES += stamp-revision
515 CLEANFILES += revision.txt revision.c
516
517 revision.c: revision.txt
518         $(AM_V_at)rm -f -- revision.c
519         $(AM_V_GEN)echo "const char psz_vlc_changeset[] = \"$$(cat revision.txt)\";" \
520                 > revision.c
521
522 revision.txt: Makefile.am
523         $(AM_V_at)$(MAKE) stamp-revision
524         $(AM_V_GEN)touch revision.txt
525
526 stamp-revision:
527         $(AM_V_at)rm -f -- revision.tmp
528         $(AM_V_GEN)(git --git-dir="$(top_srcdir)/.git/" describe --tags --long \
529                 --match '?.*.*' --always || echo exported) > revision.tmp
530         $(AM_V_at)if diff revision.tmp revision.txt >/dev/null 2>&1; then \
531                 rm -f -- revision.tmp; \
532         else \
533                 mv -f -- revision.tmp revision.txt; \
534         fi 2>&1
535
536 ###############################################################################
537 # Unit/regression test
538 ###############################################################################
539
540 dist_check_SCRIPTS = check_symbols check_headers
541 TESTS = check_symbols
542
543 check_DATA = libvlc-headers.sym libvlc-sorted.sym
544 CLEANFILES += $(check_DATA)
545
546 libvlc-sorted.sym: libvlccore.sym
547         rm -f libvlc-sorted.sym
548         sort -fdu < "$(srcdir)/libvlccore.sym" > libvlc-sorted.sym
549
550 libvlc-headers.sym:
551         rm -f libvlc-headers.sym
552         cat ${srcdir}/../include/vlc_*.h ${srcdir}/control/*.h | \
553         sed -n -e 's/^[ ]*VLC_EXPORT[ ]*([^,]*,\([^,]*\),.*/\1/p' | \
554         sed -e 's/[^a-zA-Z0-9_]*//' | \
555         sort -fdu > libvlc-headers.sym
556
557 .PHONY: libvlc-headers.sym
558
559 check-local:
560         for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
561         do \
562                 echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
563                 if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
564                 then \
565                         echo "Header $$h not included in test/headers.c!"; \
566                         exit 1; \
567                 fi ; \
568         done
569         $(srcdir)/check_headers $(pkginclude_HEADERS)
570         $(srcdir)/check_headers $(pluginsinclude_HEADERS)
571
572 FORCE:
573         @echo "Generated source cannot be phony. Go away." >&2
574         @exit 1
575
576 .PHONY: FORCE