A little more detail regarding using my github copies of the code with where it's...
[vlc/adversarial.git] / modules / Makefile.am
blob005c15017dce23a7ab74fe4dbc8fa7dfb0c274c2
1 noinst_LTLIBRARIES =
2 noinst_HEADERS =
3 check_PROGRAMS =
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
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
34 TESTS =
36 dist_noinst_SCRIPTS = genmf list.sh module.rc.in
37 dist_noinst_DATA = MODULES_LIST
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
55 BUILT_SOURCES += dummy.cpp
57 dummy.cpp:
58         touch dummy.cpp
60 if HAVE_WIN32
61 BUILT_SOURCES += module.rc.lo
62 CLEANFILES += module.rc
63 #noinst_DATA = module.rc.lo
65 module.rc: module.rc.in $(top_builddir)/config.status
66         $(AM_V_GEN) cd "$(top_builddir)" && $(SHELL) ./config.status --file="modules/$@"
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