]> git.sesse.net Git - vlc/blob - modules/Makefile.am
bluray: Handle overlay when no data is returned
[vlc] / modules / Makefile.am
1 noinst_LTLIBRARIES =
2 noinst_HEADERS =
3 check_PROGRAMS =
4
5 BASE_SUBDIRS = \
6         audio_filter \
7         control \
8         gui \
9         misc \
10         packetizer \
11         text_renderer \
12         video_filter \
13         video_output \
14         visualization
15 EXTRA_SUBDIRS = \
16         access_output \
17         mux \
18         stream_out \
19         hw/vdpau
20
21 SUBDIRS = . $(BASE_SUBDIRS)
22 DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
23 if ENABLE_SOUT
24 SUBDIRS += access_output mux stream_out
25 endif
26 if HAVE_VDPAU
27 SUBDIRS += hw/vdpau
28 endif
29
30 TESTS =
31
32 dist_noinst_SCRIPTS = genmf list.sh module.rc.in
33 dist_noinst_DATA = MODULES_LIST
34
35 include common.am
36 include access/Makefile.am
37 include access/rtp/Makefile.am
38 include arm_neon/Makefile.am
39 include audio_mixer/Makefile.am
40 include audio_output/Makefile.am
41 include codec/Makefile.am
42 include demux/Makefile.am
43 include lua/Makefile.am
44 include meta_engine/Makefile.am
45 include notify/Makefile.am
46 include services_discovery/Makefile.am
47 include stream_filter/Makefile.am
48 include video_chroma/Makefile.am
49 include video_splitter/Makefile.am
50
51 BUILT_SOURCES += dummy.cpp
52
53 dummy.cpp:
54         touch dummy.cpp
55
56 if HAVE_WIN32
57 BUILT_SOURCES += module.rc.lo
58 CLEANFILES += module.rc
59 #noinst_DATA = module.rc.lo
60
61 module.rc: module.rc.in $(top_builddir)/config.status
62         $(AM_V_GEN) cd "$(top_builddir)" && $(SHELL) ./config.status --file="modules/$@"
63
64 module.rc.lo: module.rc
65         $(AM_V_GEN) $(LIBTOOL) --tag=RC --mode=compile $(WINDRES) \
66                 --include-dir $(top_srcdir)/share \
67                 --include-dir $(top_srcdir)/extras/package/win32 \
68                 -i $< -o $@
69         echo HELLO
70 endif