]> git.sesse.net Git - vlc/blob - Makefile.am
f33531545d5cd281180b15b810decfef93468470
[vlc] / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 # SUBDIRS stores the directories where a "make" is required when building
6 # something. DIST_SUBDIRS stores the directories where nothing is built but
7 # which have makefiles with distribution information.
8 SUBDIRS = po intl m4 share
9 DIST_SUBDIRS = $(SUBDIRS) modules src debian doc ipkg lib
10
11 EXTRA_DIST = BUGS FAQ HACKING MAINTAINERS STATUS src/extras/COPYING \
12              INSTALL.win32 README.MacOSX.rtf vlc.spec install-win32 \
13              Modules.am macosx-dmg \
14              configure.ac.in mkinstalldirs bootstrap
15 MOSTLYCLEANFILES =
16 BUILT_SOURCES =
17 SUFFIXES = 
18
19 # List of programs, libraries and headers that need to be built and/or
20 # distributed. Initialized to empty because we'll use += later.
21 bin_PROGRAMS =
22
23 lib_LIBRARIES = 
24 libvlc_LIBRARIES =
25 noinst_LIBRARIES =
26
27 noinst_HEADERS =
28
29 # Tell aclocal to use -I m4. Wonder if it really works.
30 ACLOCAL_AMFLAGS = -I m4
31
32 # XXX: these flags could be set in configure.ac.in, but we set them here
33 # because old versions of automake don't support them in configure.ac.
34 AUTOMAKE_OPTIONS = foreign dist-bzip2 subdir-objects
35
36 ###############################################################################
37 # Compilation flags for debug mode, profiling, and others
38 ###############################################################################
39
40 # Standard flags used everywhere to build things in the distribution. Some
41 # of them are empty but might be extended later in the Makefile. *_default
42 # is the default flag list for all files in the distribution, for instance
43 # the vlc code. *_pic is for PIC code, such as the Mozilla plugin. *_plugin
44 # is for plugin code, *_builtin is for builtin code, and *_builtin_pic is
45 # for PIC builtin code, for instance builtin modules in the mozilla plugin.
46
47 CPPFLAGS_default = -I$(top_srcdir)/include
48 CFLAGS_default = 
49 CXXFLAGS_default = 
50 OBJCFLAGS_default = 
51 LDFLAGS_default =
52
53 CPPFLAGS_pic = $(CPPFLAGS_default)
54 CFLAGS_pic = $(CFLAGS_default) @CFLAGS_pics@
55 CXXFLAGS_pic = $(CXXFLAGS_default) @CFLAGS_pics@
56 OBJCFLAGS_pic = $(OBJCFLAGS_default) @CFLAGS_pics@
57 LDFLAGS_pic = $(LDFLAGS_default)
58
59 CPPFLAGS_plugin = $(CPPFLAGS_default) -D__VLC__ -D__PLUGIN__
60 CFLAGS_plugin = $(CFLAGS_default) @CFLAGS_plugins@
61 CXXFLAGS_plugin = $(CXXFLAGS_default) @CFLAGS_plugins@
62 OBJCFLAGS_plugin = $(OBJCFLAGS_default) @CFLAGS_plugins@
63 LDFLAGS_plugin = @LDFLAGS_plugins@
64
65 CPPFLAGS_builtin = $(CPPFLAGS_default) -D__VLC__ -D__BUILTIN__
66 CFLAGS_builtin = $(CFLAGS_default) @CFLAGS_builtins@
67 CXXFLAGS_builtin = $(CXXFLAGS_default) @CFLAGS_builtins@
68 OBJCFLAGS_builtin = $(OBJCFLAGS_default) @CFLAGS_builtins@
69 LDFLAGS_builtin =
70 L_builtin =
71
72 CPPFLAGS_builtin_pic = $(CPPFLAGS_builtin) $(CPPFLAGS_pic)
73 CFLAGS_builtin_pic = $(CFLAGS_builtin) $(CFLAGS_pic)
74 CXXFLAGS_builtin_pic = $(CXXFLAGS_builtin) $(CXXFLAGS_pic)
75 OBJCFLAGS_builtin_pic = $(OBJCFLAGS_builtin) $(OBJCFLAGS_pic)
76 LDFLAGS_builtin_pic = $(LDFLAGS_builtin) $(LDFLAGS_pic)
77 L_builtin_pic = $(L_builtin) $(L_pic)
78
79 # On Linux and Solaris, activate 64-bit off_t (by default under BSD)
80 CPPFLAGS_default += -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 -D_LARGEFILE64_SOURCE
81 CPPFLAGS_default += -D_REENTRANT -D_THREAD_SAFE
82 CPPFLAGS_default += -D_GNU_SOURCE
83
84 # Gettext support
85 CPPFLAGS_default += -DLOCALEDIR=\"$(datadir)/locale\"
86
87 # Data and plugin location
88 CPPFLAGS_default += -DDATA_PATH=\"@prefix@/share/vlc\"
89 CPPFLAGS_default += -DPLUGIN_PATH=\"@prefix@/lib/vlc\"
90
91 # Conditional flags that get added to *FLAGS_default
92 if RELEASE
93 CPPFLAGS_release = -DHAVE_RELEASE
94 endif
95 if DEBUG
96 CPPFLAGS_debug = -DDEBUG
97 CFLAGS_debug = -g
98 endif
99 if GPROF
100 CPPFLAGS_gprof = -DGPROF
101 CFLAGS_gprof = -finstrument-functions
102 endif
103 if CPROF
104 CPPFLAGS_cprof = -DCPROF
105 CFLAGS_cprof = -pg
106 endif
107 if OPTIM
108 CFLAGS_optim = @CFLAGS_OPTIM@ @CFLAGS_TUNING@
109 if DEBUG
110 else
111 if GPROF
112 else
113 if CPROF
114 else
115 CFLAGS_nodebug = @CFLAGS_OPTIM_NODEBUG@
116 endif
117 endif
118 endif
119 endif
120
121 CPPFLAGS_default += $(CPPFLAGS_release) \
122                 $(CPPFLAGS_debug) $(CPPFLAGS_gprof) $(CPPFLAGS_cprof)
123 CFLAGS_default += $(CFLAGS_optim) $(CFLAGS_nodebug) \
124                 $(CFLAGS_debug) $(CFLAGS_gprof) $(CFLAGS_cprof)
125 CXXFLAGS_default += $(CFLAGS_optim) $(CFLAGS_nodebug) \
126                 $(CFLAGS_debug) $(CFLAGS_gprof) $(CFLAGS_cprof)
127 OBJCFLAGS_default += $(CFLAGS_optim) $(CFLAGS_nodebug) \
128                 $(CFLAGS_debug) $(CFLAGS_gprof) $(CFLAGS_cprof)
129
130 ###############################################################################
131 # Headers
132 ###############################################################################
133
134 BUILT_SOURCES += \
135         include/vlc_symbols.h \
136         src/misc/modules_builtin.h \
137         src/misc/modules_plugin.h \
138         $(NULL)
139
140 pkgincludedir = $(includedir)/vlc
141
142 dist_pkginclude_HEADERS = \
143         include/vlc/vlc.h \
144         include/vlc/aout.h \
145         include/vlc/vout.h \
146         include/vlc/sout.h \
147         include/vlc/decoder.h \
148         include/vlc/input.h \
149         include/vlc/intf.h \
150         $(NULL)
151
152 noinst_HEADERS += $(HEADERS_include) $(HEADERS_include_built)
153
154 HEADERS_include = \
155         include/aout_internal.h \
156         include/audio_output.h \
157         include/beos_specific.h \
158         include/configuration.h \
159         include/darwin_specific.h \
160         include/codecs.h \
161         include/error.h \
162         include/input_ext-dec.h \
163         include/input_ext-intf.h \
164         include/input_ext-plugins.h \
165         include/interface.h \
166         include/intf_eject.h \
167         include/iso_lang.h \
168         include/main.h \
169         include/mmx.h \
170         include/modules.h \
171         include/modules_inner.h \
172         include/mtime.h \
173         include/netutils.h \
174         include/network.h \
175         include/os_specific.h \
176         include/stream_control.h \
177         include/stream_output.h \
178         include/variables.h \
179         include/video.h \
180         include/video_output.h \
181         include/vlc_common.h \
182         include/vlc_config.h \
183         include/vlc_cpu.h \
184         include/vlc_messages.h \
185         include/vlc_objects.h \
186         include/vlc_playlist.h \
187         include/vlc_threads.h \
188         include/vlc_threads_funcs.h \
189         include/win32_specific.h \
190         $(NULL)
191
192 HEADERS_include_built = \
193         include/vlc_symbols.h \
194         $(NULL)
195
196 include/vlc_symbols.h: Makefile $(HEADERS_include)
197         rm -f $@.in
198         echo '/* DO NOT EDIT THIS FILE! See Makefile.am */' >> $@.in
199         echo 'struct module_symbols_t {' >> $@.in
200         cat $(HEADERS_include) | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/    \1 (* \2_inner) \3;/' >> $@.in
201         echo '};' >> $@.in
202         echo '#ifdef __PLUGIN__' >> $@.in
203         cat $(HEADERS_include) | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/#   define \2 p_symbols->\2_inner/' >> $@.in
204         echo '#endif /* __PLUGIN__ */' >> $@.in
205         mv -f $@.in $@
206
207 src/misc/modules_plugin.h: Makefile src/misc/modules_plugin.h.in $(HEADERS_include)
208         rm -f $@.tmp && cp $@.in $@.tmp
209         sed -e 's#.*\$[I][d]:.*# * Automatically generated from '$@'.in by bootstrap#' < $@.in > $@.tmp
210         echo '#define STORE_SYMBOLS( p_symbols ) \' >> $@.tmp
211         cat $(HEADERS_include) | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/    (p_symbols)->\2_inner = \2; \\/' >> $@.tmp
212         echo '' >> $@.tmp
213         mv -f $@.tmp $@
214
215 src/misc/modules_builtin.h: Makefile src/misc/modules_builtin.h.in
216         rm -f $@.tmp && cp $@.in $@.tmp
217 if HAVE_BUILTINS
218         for i in $(BUILTINS) ; do echo "int vlc_entry__"`echo $$i | sed -e 'y@/@_@' -e 's@\..*@@'`"( module_t* );" >>$@.tmp; done
219         echo "" >> $@.tmp
220 endif
221         echo "#define ALLOCATE_ALL_BUILTINS() \\" >> $@.tmp
222         echo "    do \\" >> $@.tmp
223         echo "    { \\" >> $@.tmp
224 if HAVE_BUILTINS
225         for i in $(BUILTINS) ; do echo "        ALLOCATE_BUILTIN("`echo $$i | sed -e 'y@/@_@' -e 's@\..*@@'`"); \\" >> $@.tmp ; done
226 endif
227         echo "    } while( 0 );" >> $@.tmp
228         echo "" >> $@.tmp
229         mv -f $@.tmp $@
230
231 # These dependencies are mandatory
232 $(SOURCES): include/vlc_symbols.h
233 $(SOURCES_libvlc): src/misc/modules_plugin.h src/misc/modules_builtin.h $(LIB_intl)
234
235 ###############################################################################
236 # Optional libintl - FIXME, bad dependencies
237 ###############################################################################
238
239 intl/libintl.a: FORCE
240         cd intl && $(MAKE)
241
242 if BUILD_INTL
243 LIB_intl = intl/libintl.a
244 endif
245
246 ###############################################################################
247 # MacOS X project
248 ###############################################################################
249
250 EXTRA_DIST += \
251         extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib \
252         extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib \
253         extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib \
254         extras/MacOSX/Resources/English.lproj/InfoPlist.strings \
255         extras/MacOSX/Resources/divx.icns \
256         extras/MacOSX/Resources/generic.icns \
257         extras/MacOSX/Resources/mpeg.icns \
258         extras/MacOSX/Resources/mpeg1.icns \
259         extras/MacOSX/Resources/mpeg2.icns \
260         extras/MacOSX/Resources/mpeg4.icns \
261         extras/MacOSX/Resources/vlc.icns \
262         extras/MacOSX/Resources/pause.png \
263         extras/MacOSX/Resources/play.png \
264         extras/MacOSX/Resources/stop.png \
265         extras/MacOSX/Resources/stepf.png \
266         extras/MacOSX/Resources/stepr.png \
267         extras/MacOSX/vlc.pbproj/project.pbxproj \
268         $(NULL)
269
270 ###############################################################################
271 # MS Visual Studio and eMbedded Visual Studio projects
272 ###############################################################################
273
274 EXTRA_DIST += \
275         msvc/vlc.dsp \
276         msvc/vlc.dsw \
277         msvc/vlc.dsp.in \
278         msvc/vlc.dsp.out \
279         msvc/config.h \
280         msvc/modules_builtin_msvc.h \
281         evc/vlc.vcp \
282         evc/vlc.vcw \
283         evc/vlc.vcp.in \
284         evc/vlc.vcp.out \
285         evc/config.h \
286         evc/modules_builtin_msvc.h \
287         $(NULL)
288
289 show-vlc-sources: FORCE
290         @echo X: $(vlc_SOURCES)
291
292 show-libvlc-sources: FORCE
293         @echo X: $(SOURCES_libvlc_common) $(SOURCES_libvlc_win32) $(SOURCES_libvlc_dirent) $(SOURCES_libvlc_getopt) $(SOURCES_libvlc_libc)
294
295 show-libvlc-headers: FORCE
296         @echo X: $(HEADERS_include) $(HEADERS_include_built)
297
298 show-libvlc-pkg-headers: FORCE
299         @echo X: $(dist_pkginclude_HEADERS)
300
301 ###############################################################################
302 # Building libvlc
303 ###############################################################################
304
305 bin_SCRIPTS = vlc-config
306
307 lib_LIBRARIES += lib/libvlc.a $(LIBRARIES_libvlc_pic)
308
309 lib_libvlc_a_SOURCES = $(SOURCES_libvlc)
310 lib_libvlc_a_CFLAGS = $(CPPFLAGS_default) -D__VLC__ $(CFLAGS_default) @CFLAGS_vlc@
311 lib_libvlc_a_CXXFLAGS = $(CPPFLAGS_default) -D__VLC__ $(CXXFLAGS_default)
312
313 lib_libvlc_pic_a_SOURCES = $(SOURCES_libvlc)
314 lib_libvlc_pic_a_CFLAGS = $(CPPFLAGS_pic) -D__VLC__ $(CFLAGS_pic) @CFLAGS_vlc@
315 lib_libvlc_pic_a_CXXFLAGS = $(CPPFLAGS_pic) -D__VLC__ $(CXXFLAGS_pic)
316
317 if HAVE_BEOS
318 OPT_SOURCES_libvlc_beos = $(SOURCES_libvlc_beos)
319 endif
320 if HAVE_DARWIN
321 OPT_SOURCES_libvlc_darwin = $(SOURCES_libvlc_darwin)
322 endif
323 if HAVE_WIN32
324 OPT_SOURCES_libvlc_win32 = $(SOURCES_libvlc_win32)
325 endif
326 if BUILD_DIRENT
327 OPT_SOURCES_libvlc_dirent = $(SOURCES_libvlc_dirent)
328 endif
329 if BUILD_GETOPT
330 OPT_SOURCES_libvlc_getopt = $(SOURCES_libvlc_getopt)
331 endif
332 if BUILD_LIBC
333 OPT_SOURCES_libvlc_libc = $(SOURCES_libvlc_libc)
334 endif
335 if BUILD_MOZILLA
336 LIBRARIES_libvlc_pic = lib/libvlc_pic.a
337 endif
338
339 EXTRA_DIST += \
340         $(SOURCES_libvlc_beos) \
341         $(SOURCES_libvlc_darwin) \
342         $(SOURCES_libvlc_win32) \
343         $(SOURCES_libvlc_dirent) \
344         $(SOURCES_libvlc_getopt) \
345         $(SOURCES_libvlc_libc) \
346         $(NULL)
347
348 SOURCES_libvlc_beos = \
349         src/misc/beos_specific.cpp \
350         $(NULL)
351
352 SOURCES_libvlc_darwin = \
353         src/misc/darwin_specific.c \
354         $(NULL)
355
356 SOURCES_libvlc_win32 = \
357         src/misc/win32_specific.c \
358         $(NULL)
359
360 SOURCES_libvlc_dirent = \
361         src/extras/dirent.c \
362         src/extras/dirent.h \
363         $(NULL)
364
365 SOURCES_libvlc_getopt = \
366         src/extras/getopt.c \
367         src/extras/getopt.h \
368         src/extras/getopt1.c \
369         $(NULL)
370
371 SOURCES_libvlc_libc = \
372         src/extras/libc.c
373         $(NULL)
374
375 SOURCES_libvlc_common = \
376         src/libvlc.c \
377         src/libvlc.h \
378         src/interface/interface.c \
379         src/interface/intf_eject.c \
380         src/playlist/playlist.c \
381         src/input/input.c \
382         src/input/input_ext-plugins.c \
383         src/input/input_ext-dec.c \
384         src/input/input_ext-intf.c \
385         src/input/input_dec.c \
386         src/input/input_programs.c \
387         src/input/input_clock.c \
388         src/input/input_info.c \
389         src/video_output/video_output.c \
390         src/video_output/vout_pictures.c \
391         src/video_output/vout_pictures.h \
392         src/video_output/video_text.c \
393         src/video_output/video_text.h \
394         src/video_output/vout_subpictures.c \
395         src/audio_output/common.c \
396         src/audio_output/dec.c \
397         src/audio_output/filters.c \
398         src/audio_output/input.c \
399         src/audio_output/mixer.c \
400         src/audio_output/output.c \
401         src/audio_output/intf.c \
402         src/stream_output/stream_output.c \
403         src/misc/mtime.c \
404         src/misc/modules.c \
405         src/misc/threads.c \
406         src/misc/cpu.c \
407         src/misc/configuration.c \
408         src/misc/netutils.c \
409         src/misc/iso_lang.c \
410         src/misc/iso-639_def.h \
411         src/misc/messages.c \
412         src/misc/objects.c \
413         src/misc/variables.c \
414         src/misc/error.c \
415         $(NULL)
416
417 SOURCES_libvlc = \
418         $(SOURCES_libvlc_common) \
419         $(OPT_SOURCES_libvlc_beos) \
420         $(OPT_SOURCES_libvlc_darwin) \
421         $(OPT_SOURCES_libvlc_win32) \
422         $(OPT_SOURCES_libvlc_dirent) \
423         $(OPT_SOURCES_libvlc_getopt) \
424         $(OPT_SOURCES_libvlc_libc) \
425         $(NULL)
426
427 ###############################################################################
428 # Building vlc
429 ###############################################################################
430
431 bin_PROGRAMS += vlc
432
433 vlc_SOURCES = src/vlc.c
434
435 # @AUTOMAKE_SUCKS@ gets expanded to $(L_builtin) $(LDFLAGS_builtin)
436 # but we don't write it directly, otherwise automake will go amok and eat all
437 # the memory because of its 2^N crap algorithm. So we fool him. Nuahaha.
438 vlc_LDADD = lib/libvlc.a $(LDFLAGS_vlc) \
439             $(DATA_win32_rc) $(LIB_intl) @AUTOMAKE_SUCKS@
440 vlc_CFLAGS = $(CPPFLAGS_default) $(CFLAGS_default)
441
442 # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
443 # old automake-1.5 bug (automake/279).
444 DEPENDENCIES_vlc = lib/libvlc.a $(L_builtin) $(DATA_win32_rc) $(LIB_intl)
445
446 vlc$(EXEEXT): $(vlc_OBJECTS) $(DEPENDENCIES_vlc)
447         @rm -f vlc$(EXEEXT)
448         $(LINK) $(vlc_LDFLAGS) $(vlc_OBJECTS) $(vlc_LDADD) $(LIBS)
449 if HAVE_BEOS
450         xres -o $@ ./share/vlc_beos.rsrc
451         mimeset -f $@
452 endif
453
454 # Install the symlinks
455 install-exec-local:
456         for i in dummy $(ALIASES) ; do if test "x$$i" != "xdummy" ; then \
457                 rm -f $(DESTDIR)$(bindir)/$$i && \
458                 ln -s vlc $(DESTDIR)$(bindir)/$$i ; \
459         fi ; done
460
461 if HAVE_DARWIN
462 # Create the MacOS X app
463 vlc_app_DATA = vlc.app
464 vlc_appdir = $(bindir)
465 vlc.app: vlc $(PLUGIN_FILES)
466         rm -Rf vlc.app
467         cd extras/MacOSX ; pbxbuild | grep -v '^[ \t]' | grep -v "^$$"
468         cp -r extras/MacOSX/build/vlc.bundle ./vlc.app
469         $(INSTALL) -d vlc.app/Contents/MacOS
470         $(INSTALL) vlc vlc.app/Contents/MacOS/
471         $(INSTALL) -d vlc.app/Contents/MacOS/modules
472         for i in dummy $(PLUGIN_FILES) ; do if test "x$$i" != "xdummy" ; then \
473                 $(INSTALL) $$i vlc.app/Contents/MacOS/modules/ ; \
474         fi ; done
475         $(INSTALL) -d vlc.app/Contents/MacOS/share
476         $(INSTALL) -m 644 share/*.psf vlc.app/Contents/MacOS/share
477 endif
478
479 if HAVE_WIN32
480 DATA_win32_rc = $(noinst_share_vlc_win32_rc_DATA)
481 noinst_share_vlc_win32_rc_DATA = share/vlc_win32_rc.$(OBJEXT)
482 noinst_share_vlc_win32_rcdir = $(libdir)
483 share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
484         $(WINDRES) --include-dir share -i $< -o $@
485 endif
486
487 ###############################################################################
488 # Building the Mozilla plugin
489 ###############################################################################
490
491 noinst_LIBRARIES += $(noinst_LIBRARIES_mozilla)
492
493 MOSTLYCLEANFILES += $(LIBRARIES_mozilla)
494
495 EXTRA_DIST += $(SOURCES_mozilla) mozilla/vlcintf.idl
496
497 BUILT_SOURCES += $(BUILT_SOURCES_mozilla)
498
499 SOURCES_mozilla = \
500         mozilla/vlcshell.cpp \
501         mozilla/vlcplugin.cpp \
502         mozilla/vlcplugin.h \
503         mozilla/vlcpeer.cpp \
504         mozilla/vlcpeer.h \
505         mozilla/classinfo.h \
506         $(SOURCES_mozilla_win32) \
507         $(SOURCES_mozilla_unix) \
508         $(NULL)
509
510 # Under Win32, Mozilla plugins need to be named NP******.DLL, but under Unix
511 # the common naming scheme is lib******plugin.so. Also, we need npwin.cpp
512 # under Win32 and npunix.c under Unix.
513 if HAVE_WIN32
514 LIBRARIES_mozilla = mozilla/npvlc$(LIBEXT)
515 SOURCES_mozilla_win32 = mozilla/npwin.cpp
516 CPPFLAGS_mozilla_EXTRA = -DXP_WIN -DXP_WIN32
517 else
518 LIBRARIES_mozilla = mozilla/libvlcplugin$(LIBEXT)
519 SOURCES_mozilla_unix = mozilla/npunix.c
520 endif
521
522 if BUILD_MOZILLA
523 if UNTRUE
524 noinst_LIBRARIES_mozilla = mozilla/libplugin.a
525 endif
526
527 mozilla_libplugin_a_SOURCES = $(SOURCES_mozilla) $(BUILT_SOURCES_mozilla)
528 mozilla_libplugin_a_CFLAGS = $(CPPFLAGS_pic) $(CFLAGS_pic) \
529                              $(CPPFLAGS_mozilla) $(CFLAGS_mozilla) \
530                              $(CPPFLAGS_mozilla_EXTRA)
531 mozilla_libplugin_a_CXXFLAGS = $(CPPFLAGS_pic) $(CXXFLAGS_pic) \
532                                $(CPPFLAGS_mozilla) $(CXXFLAGS_mozilla) \
533                                $(CPPFLAGS_mozilla_EXTRA)
534 mozilla_libplugin_a_DEPENDENCIES = lib/libvlc_pic.a $(L_builtin_pic) $(DATA_npvlc_rc)
535
536 BUILT_SOURCES_mozilla = mozilla/vlcintf.h
537 $(SOURCES_mozilla): mozilla/vlcintf.h
538
539 mozilla_plugin_DATA = $(LIBRARIES_mozilla)
540 mozilla_plugindir = $(libdir)/mozilla/plugins
541 $(LIBRARIES_mozilla): $(mozilla_libplugin_a_OBJECTS) \
542                       $(mozilla_libplugin_a_DEPENDENCIES) \
543                       $(L_builtin_pic)
544         $(CXXLINK) $(mozilla_libplugin_a_OBJECTS) $(DATA_npvlc_rc) \
545                 lib/libvlc_pic.a $(L_builtin_pic) -shared $(LDFLAGS) \
546                 $(LDFLAGS_vlc) $(LDFLAGS_mozilla) $(LDFLAGS_builtin_pic)
547
548 mozilla_vlcintf_xpt_DATA = mozilla/vlcintf.xpt
549 mozilla_vlcintf_xptdir = $(libdir)/mozilla/components
550 mozilla/vlcintf.xpt: Makefile mozilla/vlcintf.idl
551         $(XPIDL) -I/usr/share/idl/mozilla -m typelib \
552                 -o mozilla/vlcintf mozilla/vlcintf.idl
553
554 mozilla/vlcintf.h: Makefile mozilla/vlcintf.idl
555         $(XPIDL) -I/usr/share/idl/mozilla -m header \
556                 -o mozilla/vlcintf mozilla/vlcintf.idl
557
558 if HAVE_WIN32
559 DATA_npvlc_rc = $(noinst_mozilla_npvlc_rc_DATA)
560 noinst_mozilla_npvlc_rc_DATA = mozilla/npvlc_rc.$(OBJEXT)
561 noinst_mozilla_npvlc_rcdir = $(libdir)
562 mozilla/npvlc_rc.$(OBJEXT): mozilla/npvlc_rc.rc
563         $(WINDRES) --include-dir mozilla -i $< -o $@
564 endif
565 endif
566
567 ###############################################################################
568 # Modules
569 ###############################################################################
570 MOSTLYCLEANFILES += $(PLUGIN_FILES)
571 PLUGIN_FILES =
572
573 libvlcdir = $(libdir)/vlc
574
575 include Modules.am
576
577 ###############################################################################
578 # Force rule
579 ###############################################################################
580 FORCE: