]> git.sesse.net Git - vlc/blob - modules/Makefile.am
mmal: Move video_output plugin into hw/mmal module
[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         hw/mmal
21
22 SUBDIRS = . $(BASE_SUBDIRS)
23 DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
24 if ENABLE_SOUT
25 SUBDIRS += access_output mux stream_out
26 endif
27 if HAVE_VDPAU
28 SUBDIRS += hw/vdpau
29 endif
30 if HAVE_MMAL
31 SUBDIRS += hw/mmal
32 endif
33
34 TESTS =
35
36 dist_noinst_SCRIPTS = genmf list.sh module.rc.in
37 dist_noinst_DATA = MODULES_LIST
38
39 include common.am
40 include access/Makefile.am
41 include access/rtp/Makefile.am
42 include arm_neon/Makefile.am
43 include audio_mixer/Makefile.am
44 include audio_output/Makefile.am
45 include codec/Makefile.am
46 include demux/Makefile.am
47 include lua/Makefile.am
48 include meta_engine/Makefile.am
49 include notify/Makefile.am
50 include services_discovery/Makefile.am
51 include stream_filter/Makefile.am
52 include video_chroma/Makefile.am
53 include video_splitter/Makefile.am
54
55 BUILT_SOURCES += dummy.cpp
56
57 dummy.cpp:
58         touch dummy.cpp
59
60 if HAVE_WIN32
61 BUILT_SOURCES += module.rc.lo
62 CLEANFILES += module.rc
63 #noinst_DATA = module.rc.lo
64
65 module.rc: module.rc.in $(top_builddir)/config.status
66         $(AM_V_GEN) cd "$(top_builddir)" && $(SHELL) ./config.status --file="modules/$@"
67
68 module.rc.lo: module.rc
69         $(AM_V_GEN) $(LIBTOOL) --tag=RC --mode=compile $(WINDRES) \
70                 --include-dir $(top_srcdir)/share \
71                 --include-dir $(top_srcdir)/extras/package/win32 \
72                 -i $< -o $@
73         echo HELLO
74 endif