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