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