]> git.sesse.net Git - vlc/blob - Makefile.am
* src/audio_output/output.c: fixed another quality affecting bug.
[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 project
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         $(NULL)
282
283 #
284 # rule to rebuild vlc.dsp - not for the faint of heart
285 #
286 update-vlc.dsp: FORCE
287         rm -f msvc/vlc.dsp
288 #       Top of the project file
289         cat msvc/vlc.dsp.in > msvc/vlc.dsp
290 #       The source files
291         echo '# Begin Group "Source Files"\r' >> msvc/vlc.dsp
292         echo '# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r' >> msvc/vlc.dsp
293         echo '# Begin Group "vlc"\r' >> msvc/vlc.dsp
294         for file in $(vlc_SOURCES) ; do \
295                 echo '# Begin Source File\r' >> msvc/vlc.dsp ; \
296                 echo $$file | sed -e 's%/%\\%g' -e 's%.*%SOURCE="..\\&"\r%' >> msvc/vlc.dsp ; \
297                 echo '# End Source File\r' >> msvc/vlc.dsp ; \
298         done ; \
299         echo '# End Group\r' >> msvc/vlc.dsp
300         echo '# Begin Group "libvlc"\r' >> msvc/vlc.dsp
301         for file in `for i in $(SOURCES_libvlc) $(OPT_SOURCES_libvlc_win32) $(OPT_SOURCES_libvlc_dirent) $(OPT_SOURCES_libvlc_getopt) ; do echo $$i ; done | grep -v "/.*/"` ; do \
302                 echo '# Begin Source File\r' >> msvc/vlc.dsp ; \
303                 echo $$file | sed -e 's%/%\\%g' -e 's%.*%SOURCE="..\\&"\r%' >> msvc/vlc.dsp ; \
304                 echo '# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"\r' >> msvc/vlc.dsp ; \
305                 echo '# End Source File\r' >> msvc/vlc.dsp ; \
306         done ; \
307         for subdir in `for i in $(SOURCES_libvlc) $(OPT_SOURCES_libvlc_win32) $(OPT_SOURCES_libvlc_dirent) $(OPT_SOURCES_libvlc_getopt) ; do echo $$i ; done | grep "/.*/" | cut -f2 -d/ | sort | uniq` ; do \
308                 echo '# Begin Group "'$$subdir'"\r' >> msvc/vlc.dsp ; \
309                 for file in `for i in $(SOURCES_libvlc) $(OPT_SOURCES_libvlc_win32) $(OPT_SOURCES_libvlc_dirent) $(OPT_SOURCES_libvlc_getopt) ; do echo $$i ; done | grep "/$$subdir/"` ; do \
310                         echo '# Begin Source File\r' >> msvc/vlc.dsp ; \
311                         echo $$file | sed -e 's%/%\\%g' -e 's%.*%SOURCE="..\\&"\r%' >> msvc/vlc.dsp ; \
312                         echo '# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"\r' >> msvc/vlc.dsp ; \
313                         echo '!IF "$$(CFG)" == "vlc - Win32 Release"\r' >> msvc/vlc.dsp ; \
314                         echo '# PROP Intermediate_Dir "Release\'$$subdir'"\r' >> msvc/vlc.dsp ; \
315                         echo '# PROP Output_Dir "Release\'$$subdir'"\r' >> msvc/vlc.dsp ; \
316                         echo '!ELSEIF "$$(CFG)" == "vlc - Win32 Debug"\r' >> msvc/vlc.dsp ; \
317                         echo '# PROP Intermediate_Dir "Debug\'$$subdir'"\r' >> msvc/vlc.dsp ; \
318                         echo '# PROP Output_Dir "Debug\'$$subdir'"\r' >> msvc/vlc.dsp ; \
319                         echo '!ENDIF\r' >> msvc/vlc.dsp ; \
320                         echo '# End Source File\r' >> msvc/vlc.dsp ; \
321                 done ; \
322                 echo '# End Group\r' >> msvc/vlc.dsp ; \
323         done
324         echo '# End Group\r' >> msvc/vlc.dsp
325         echo '# End Group\r' >> msvc/vlc.dsp
326 #       The modules
327         echo 'no modules yet'
328 #       The headers
329         echo '# Begin Group "Header Files"\r' >> msvc/vlc.dsp
330         echo '# PROP Default_Filter "h;hpp;hxx;hm;inl"\r' >> msvc/vlc.dsp
331         for file in $(HEADERS_include) $(HEADERS_include_built) ; do \
332                 echo '# Begin Source File\r' >> msvc/vlc.dsp ; \
333                 echo $$file | sed -e 's%/%\\%g' -e 's%.*%SOURCE="..\\&"\r%' >> msvc/vlc.dsp ; \
334                 echo '# End Source File\r' >> msvc/vlc.dsp ; \
335         done
336         echo '# Begin Group "vlc"\r' >> msvc/vlc.dsp
337         for file in $(dist_pkginclude_HEADERS) ; do \
338                 echo '# Begin Source File\r' >> msvc/vlc.dsp ; \
339                 echo $$file | sed -e 's%/%\\%g' -e 's%.*%SOURCE="..\\&"\r%' >> msvc/vlc.dsp ; \
340                 echo '# End Source File\r' >> msvc/vlc.dsp ; \
341         done
342         echo '# End Group\r' >> msvc/vlc.dsp
343         echo '# End Group\r' >> msvc/vlc.dsp
344 #       Bottom of the project file - handles resource files too
345         cat msvc/vlc.dsp.out >> msvc/vlc.dsp
346
347 ###############################################################################
348 # Building libvlc
349 ###############################################################################
350
351 bin_SCRIPTS = vlc-config
352
353 lib_LIBRARIES += lib/libvlc.a $(LIBRARIES_libvlc_pic)
354
355 lib_libvlc_a_SOURCES = $(SOURCES_libvlc)
356 lib_libvlc_a_CFLAGS = $(CPPFLAGS_default) -D__VLC__ $(CFLAGS_default) @CFLAGS_vlc@
357 lib_libvlc_a_CXXFLAGS = $(CPPFLAGS_default) -D__VLC__ $(CXXFLAGS_default)
358
359 lib_libvlc_pic_a_SOURCES = $(SOURCES_libvlc)
360 lib_libvlc_pic_a_CFLAGS = $(CPPFLAGS_pic) -D__VLC__ $(CFLAGS_pic) @CFLAGS_vlc@
361 lib_libvlc_pic_a_CXXFLAGS = $(CPPFLAGS_pic) -D__VLC__ $(CXXFLAGS_pic)
362
363 if HAVE_BEOS
364 SOURCES_libvlc_beos = $(OPT_SOURCES_libvlc_beos)
365 endif
366 if HAVE_DARWIN
367 SOURCES_libvlc_darwin = $(OPT_SOURCES_libvlc_darwin)
368 endif
369 if HAVE_WIN32
370 SOURCES_libvlc_win32 = $(OPT_SOURCES_libvlc_win32)
371 endif
372 if BUILD_DIRENT
373 SOURCES_libvlc_dirent = $(OPT_SOURCES_libvlc_dirent)
374 endif
375 if BUILD_GETOPT
376 SOURCES_libvlc_getopt = $(OPT_SOURCES_libvlc_getopt)
377 endif
378 if BUILD_STRNDUP
379 SOURCES_libvlc_strndup = $(OPT_SOURCES_libvlc_strndup)
380 endif
381 if BUILD_MOZILLA
382 LIBRARIES_libvlc_pic = lib/libvlc_pic.a
383 endif
384
385 EXTRA_DIST += \
386         $(OPT_SOURCES_libvlc_beos) \
387         $(OPT_SOURCES_libvlc_darwin) \
388         $(OPT_SOURCES_libvlc_win32) \
389         $(OPT_SOURCES_libvlc_dirent) \
390         $(OPT_SOURCES_libvlc_getopt) \
391         $(OPT_SOURCES_libvlc_strndup) \
392         $(NULL)
393
394 OPT_SOURCES_libvlc_beos = \
395         src/misc/beos_specific.cpp \
396         $(NULL)
397
398 OPT_SOURCES_libvlc_darwin = \
399         src/misc/darwin_specific.c \
400         $(NULL)
401
402 OPT_SOURCES_libvlc_win32 = \
403         src/misc/win32_specific.c \
404         $(NULL)
405
406 OPT_SOURCES_libvlc_dirent = \
407         src/extras/dirent.c \
408         src/extras/dirent.h \
409         $(NULL)
410
411 OPT_SOURCES_libvlc_getopt = \
412         src/extras/getopt.c \
413         src/extras/getopt.h \
414         src/extras/getopt1.c \
415         $(NULL)
416
417 OPT_SOURCES_libvlc_strndup = \
418         src/extras/strndup.c
419         $(NULL)
420
421 SOURCES_libvlc = \
422         src/libvlc.c \
423         src/libvlc.h \
424         src/interface/interface.c \
425         src/interface/intf_eject.c \
426         src/playlist/playlist.c \
427         src/input/input.c \
428         src/input/input_ext-plugins.c \
429         src/input/input_ext-dec.c \
430         src/input/input_ext-intf.c \
431         src/input/input_dec.c \
432         src/input/input_programs.c \
433         src/input/input_clock.c \
434         src/input/input_info.c \
435         src/video_output/video_output.c \
436         src/video_output/vout_pictures.c \
437         src/video_output/vout_pictures.h \
438         src/video_output/video_text.c \
439         src/video_output/video_text.h \
440         src/video_output/vout_subpictures.c \
441         src/audio_output/common.c \
442         src/audio_output/dec.c \
443         src/audio_output/filters.c \
444         src/audio_output/input.c \
445         src/audio_output/mixer.c \
446         src/audio_output/output.c \
447         src/audio_output/intf.c \
448         src/stream_output/stream_output.c \
449         src/misc/mtime.c \
450         src/misc/modules.c \
451         src/misc/threads.c \
452         src/misc/cpu.c \
453         src/misc/configuration.c \
454         src/misc/netutils.c \
455         src/misc/iso_lang.c \
456         src/misc/iso-639.def \
457         src/misc/messages.c \
458         src/misc/objects.c \
459         src/misc/variables.c \
460         src/misc/error.c \
461         $(SOURCES_libvlc_beos) \
462         $(SOURCES_libvlc_darwin) \
463         $(SOURCES_libvlc_win32) \
464         $(SOURCES_libvlc_dirent) \
465         $(SOURCES_libvlc_getopt) \
466         $(SOURCES_libvlc_strndup) \
467         $(NULL)
468
469 ###############################################################################
470 # Building vlc
471 ###############################################################################
472
473 bin_PROGRAMS += vlc
474
475 vlc_SOURCES = src/vlc.c
476
477 # @AUTOMAKE_SUCKS@ gets expanded to $(L_builtin) $(LDFLAGS_builtin)
478 # but we don't write it directly, otherwise automake will go amok and eat all
479 # the memory because of its 2^N crap algorithm. So we fool him. Nuahaha.
480 vlc_LDADD = lib/libvlc.a $(LDFLAGS_vlc) \
481             $(DATA_win32_rc) $(LIB_intl) @AUTOMAKE_SUCKS@
482 vlc_CFLAGS = $(CPPFLAGS_default) $(CFLAGS_default)
483
484 # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
485 # old automake-1.5 bug (automake/279).
486 DEPENDENCIES_vlc = lib/libvlc.a $(L_builtin) $(DATA_win32_rc) $(LIB_intl)
487
488 vlc$(EXEEXT): $(vlc_OBJECTS) $(DEPENDENCIES_vlc)
489         @rm -f vlc$(EXEEXT)
490         $(LINK) $(vlc_LDFLAGS) $(vlc_OBJECTS) $(vlc_LDADD) $(LIBS)
491 if HAVE_BEOS
492         xres -o $@ ./share/vlc_beos.rsrc
493         mimeset -f $@
494 endif
495
496 # Install the symlinks
497 install-exec-local:
498         for i in dummy $(ALIASES) ; do if test "x$$i" != "xdummy" ; then \
499                 rm -f $(DESTDIR)$(bindir)/$$i && \
500                 ln -s vlc $(DESTDIR)$(bindir)/$$i ; \
501         fi ; done
502
503 if HAVE_DARWIN
504 # Create the MacOS X app
505 vlc_app_DATA = vlc.app
506 vlc_appdir = $(bindir)
507 vlc.app: vlc $(PLUGIN_FILES)
508         rm -Rf vlc.app
509         cd extras/MacOSX ; pbxbuild | grep -v '^[ \t]' | grep -v "^$$"
510         cp -r extras/MacOSX/build/vlc.bundle ./vlc.app
511         $(INSTALL) -d vlc.app/Contents/MacOS
512         $(INSTALL) vlc vlc.app/Contents/MacOS/
513         $(INSTALL) -d vlc.app/Contents/MacOS/modules
514         for i in dummy $(PLUGIN_FILES) ; do if test "x$$i" != "xdummy" ; then \
515                 $(INSTALL) $$i vlc.app/Contents/MacOS/modules/ ; \
516         fi ; done
517         $(INSTALL) -d vlc.app/Contents/MacOS/share
518         $(INSTALL) -m 644 share/*.psf vlc.app/Contents/MacOS/share
519 endif
520
521 if HAVE_WIN32
522 DATA_win32_rc = $(noinst_share_vlc_win32_rc_DATA)
523 noinst_share_vlc_win32_rc_DATA = share/vlc_win32_rc.$(OBJEXT)
524 noinst_share_vlc_win32_rcdir = $(libdir)
525 share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
526         $(WINDRES) -i $< -o $@
527 endif
528
529 ###############################################################################
530 # Building the Mozilla plugin
531 ###############################################################################
532
533 noinst_LIBRARIES += $(noinst_LIBRARIES_mozilla)
534
535 MOSTLYCLEANFILES += $(LIBRARIES_mozilla)
536
537 EXTRA_DIST += $(SOURCES_mozilla) mozilla/vlcintf.idl
538
539 BUILT_SOURCES += $(BUILT_SOURCES_mozilla)
540
541 SOURCES_mozilla = \
542         mozilla/vlcshell.cpp \
543         mozilla/vlcplugin.cpp \
544         mozilla/vlcplugin.h \
545         mozilla/vlcpeer.cpp \
546         mozilla/vlcpeer.h \
547         mozilla/classinfo.h \
548         $(SOURCES_mozilla_win32) \
549         $(SOURCES_mozilla_unix) \
550         $(NULL)
551
552 # Under Win32, Mozilla plugins need to be named NP******.DLL, but under Unix
553 # the common naming scheme is lib******plugin.so. Also, we need npwin.cpp
554 # under Win32 and npunix.c under Unix.
555 if HAVE_WIN32
556 LIBRARIES_mozilla = mozilla/npvlc$(LIBEXT)
557 SOURCES_mozilla_win32 = mozilla/npwin.cpp
558 CPPFLAGS_mozilla_EXTRA = -DXP_WIN -DXP_WIN32
559 else
560 LIBRARIES_mozilla = mozilla/libvlcplugin$(LIBEXT)
561 SOURCES_mozilla_unix = mozilla/npunix.c
562 endif
563
564 if BUILD_MOZILLA
565 if UNTRUE
566 noinst_LIBRARIES_mozilla = mozilla/libplugin.a
567 endif
568
569 mozilla_libplugin_a_SOURCES = $(SOURCES_mozilla) $(BUILT_SOURCES_mozilla)
570 mozilla_libplugin_a_CFLAGS = $(CPPFLAGS_pic) $(CFLAGS_pic) \
571                              $(CPPFLAGS_mozilla) $(CFLAGS_mozilla) \
572                              $(CPPFLAGS_mozilla_EXTRA)
573 mozilla_libplugin_a_CXXFLAGS = $(CPPFLAGS_pic) $(CXXFLAGS_pic) \
574                                $(CPPFLAGS_mozilla) $(CXXFLAGS_mozilla) \
575                                $(CPPFLAGS_mozilla_EXTRA)
576 mozilla_libplugin_a_DEPENDENCIES = lib/libvlc_pic.a $(L_builtin_pic) $(DATA_npvlc_rc)
577
578 BUILT_SOURCES_mozilla = mozilla/vlcintf.h
579 $(SOURCES_mozilla): mozilla/vlcintf.h
580
581 mozilla_plugin_DATA = $(LIBRARIES_mozilla)
582 mozilla_plugindir = $(libdir)/mozilla/plugins
583 $(LIBRARIES_mozilla): $(mozilla_libplugin_a_OBJECTS) \
584                       $(mozilla_libplugin_a_DEPENDENCIES) \
585                       $(L_builtin_pic)
586         $(CXXLINK) $(mozilla_libplugin_a_OBJECTS) $(DATA_npvlc_rc) \
587                 lib/libvlc_pic.a $(L_builtin_pic) -shared $(LDFLAGS) \
588                 $(LDFLAGS_vlc) $(LDFLAGS_mozilla) $(LDFLAGS_builtin_pic)
589
590 mozilla_vlcintf_xpt_DATA = mozilla/vlcintf.xpt
591 mozilla_vlcintf_xptdir = $(libdir)/mozilla/components
592 mozilla/vlcintf.xpt: Makefile mozilla/vlcintf.idl
593         $(XPIDL) -I/usr/share/idl/mozilla -m typelib \
594                 -o mozilla/vlcintf mozilla/vlcintf.idl
595
596 mozilla/vlcintf.h: Makefile mozilla/vlcintf.idl
597         $(XPIDL) -I/usr/share/idl/mozilla -m header \
598                 -o mozilla/vlcintf mozilla/vlcintf.idl
599
600 if HAVE_WIN32
601 DATA_npvlc_rc = $(noinst_mozilla_npvlc_rc_DATA)
602 noinst_mozilla_npvlc_rc_DATA = mozilla/npvlc_rc.$(OBJEXT)
603 noinst_mozilla_npvlc_rcdir = $(libdir)
604 mozilla/npvlc_rc.$(OBJEXT): mozilla/npvlc_rc.rc
605         $(WINDRES) -i $< -o $@
606 endif
607 endif
608
609 ###############################################################################
610 # Modules
611 ###############################################################################
612 MOSTLYCLEANFILES += $(PLUGIN_FILES)
613 PLUGIN_FILES =
614
615 libvlcdir = $(libdir)/vlc
616
617 include Modules.am
618
619 ###############################################################################
620 # Force rule
621 ###############################################################################
622 FORCE: