]> git.sesse.net Git - vlc/blob - modules/Makefile.am
macosx: add comment for application:openFiles: usage
[vlc] / modules / Makefile.am
1 noinst_LTLIBRARIES =
2 noinst_HEADERS =
3 check_PROGRAMS =
4 EXTRA_DIST =
5
6 BASE_SUBDIRS = \
7         audio_filter \
8         control \
9         gui \
10         misc \
11         packetizer \
12         text_renderer \
13         video_filter \
14         video_output \
15         visualization
16 EXTRA_SUBDIRS = \
17         access_output \
18         mux \
19         stream_out \
20         hw/vdpau \
21         hw/mmal
22
23 SUBDIRS = . $(BASE_SUBDIRS)
24 DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
25 if ENABLE_SOUT
26 SUBDIRS += access_output mux stream_out
27 endif
28 if HAVE_VDPAU
29 SUBDIRS += hw/vdpau
30 endif
31 if HAVE_MMAL
32 SUBDIRS += hw/mmal
33 endif
34
35 TESTS =
36
37 dist_noinst_SCRIPTS = genmf list.sh module.rc.in
38 dist_noinst_DATA = MODULES_LIST
39
40 include common.am
41 include access/Makefile.am
42 include access/rtp/Makefile.am
43 include arm_neon/Makefile.am
44 include audio_mixer/Makefile.am
45 include audio_output/Makefile.am
46 include codec/Makefile.am
47 include demux/Makefile.am
48 include lua/Makefile.am
49 include meta_engine/Makefile.am
50 include notify/Makefile.am
51 include services_discovery/Makefile.am
52 include stream_filter/Makefile.am
53 include video_chroma/Makefile.am
54 include video_splitter/Makefile.am
55
56 BUILT_SOURCES += dummy.cpp
57
58 dummy.cpp:
59         touch dummy.cpp
60
61 if HAVE_WIN32
62 BUILT_SOURCES += module.rc.lo
63 CLEANFILES += module.rc
64 #noinst_DATA = module.rc.lo
65
66 module.rc: module.rc.in $(top_builddir)/config.status
67         $(AM_V_GEN) cd "$(top_builddir)" && $(SHELL) ./config.status --file="modules/$@"
68
69 module.rc.lo: module.rc
70         $(AM_V_GEN) $(LIBTOOL) --tag=RC --mode=compile $(WINDRES) \
71                 --include-dir $(top_srcdir)/share \
72                 --include-dir $(top_srcdir)/extras/package/win32 \
73                 -i $< -o $@
74         echo HELLO
75 endif
76
77 # Wayland
78 SUFFIXES += -client-protocol.h -protocol.c .xml
79
80 .xml-client-protocol.h:
81         $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < "$^" > "$@.tmp"
82         $(AM_V_at)mv -f -- "$@.tmp" "$@"
83
84 .xml-protocol.c:
85         $(AM_V_GEN)$(WAYLAND_SCANNER) code < "$^" > "$@.tmp"
86         $(AM_V_at)mv -f -- "$@.tmp" "$@"