]> git.sesse.net Git - vlc/blob - Makefile.am
* vlc.win32.nsi: brand new NSIS auto-installer script.
[vlc] / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 NULL =
6
7 # SUBDIRS stores the directories where a "make" is required when building
8 # something. DIST_SUBDIRS stores the directories where nothing is built but
9 # which have makefiles with distribution information.
10 #  - intl should come before modules and . because all the code uses gettext
11 #  - modules should come before . because vlc needs the builtins
12 #  - . should come before mozilla because the plugin needs libvlc_pic.a
13 #  - po should come before . because VLC.app needs the pofiles
14 SUBDIRS = intl modules po . mozilla share m4 doc
15 DIST_SUBDIRS = $(SUBDIRS) src debian ipkg lib autotools
16
17 EXTRA_DIST = \
18         HACKING \
19         INSTALL.win32 \
20         vlc.exe.manifest \
21         MAINTAINERS \
22         README.MacOSX.rtf \
23         bootstrap \
24         src/extras/COPYING \
25         toolbox \
26         vlc-config.in.in \
27         vlc.ebuild \
28         vlc.spec \
29         vlc.spec.mdk \
30         vlc.win32.nsi \
31         $(NULL)
32
33 BUILT_SOURCES =
34 SUFFIXES = 
35
36 # Tell aclocal to use -I m4. Wonder if it really works.
37 ACLOCAL_AMFLAGS = -I m4
38
39 # XXX: these flags could be set in configure.ac, but we set them here
40 # because old versions of automake don't support them in configure.ac.
41 AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects
42
43 ###############################################################################
44 # Headers
45 ###############################################################################
46
47 BUILT_SOURCES += \
48         include/vlc_symbols.h \
49         src/misc/modules_builtin.h \
50         src/misc/modules_plugin.h \
51         $(NULL)
52
53 pkgincludedir = $(includedir)/vlc
54
55 dist_pkginclude_HEADERS = \
56         include/vlc/vlc.h \
57         include/vlc/aout.h \
58         include/vlc/vout.h \
59         include/vlc/sout.h \
60         include/vlc/decoder.h \
61         include/vlc/input.h \
62         include/vlc/intf.h \
63         $(NULL)
64
65 noinst_HEADERS = $(HEADERS_include) $(HEADERS_include_built)
66
67 HEADERS_include = \
68         include/aout_internal.h \
69         include/audio_output.h \
70         include/beos_specific.h \
71         include/configuration.h \
72         include/darwin_specific.h \
73         include/charset.h \
74         include/codecs.h \
75         include/ninput.h \
76         include/input_ext-dec.h \
77         include/input_ext-intf.h \
78         include/input_ext-plugins.h \
79         include/intf_eject.h \
80         include/iso_lang.h \
81         include/vlc_httpd.h \
82         include/main.h \
83         include/mmx.h \
84         include/modules.h \
85         include/modules_inner.h \
86         include/mtime.h \
87         include/network.h \
88         include/os_specific.h \
89         include/stream_control.h \
90         include/stream_output.h \
91         include/variables.h \
92         include/video_output.h \
93         include/vlc_bits.h \
94         include/vlc_block.h \
95         include/vlc_block_helper.h \
96         include/vlc_codec.h \
97         include/vlc_common.h \
98         include/vlc_config.h \
99         include/vlc_cpu.h \
100         include/vlc_error.h \
101         include/vlc_es.h \
102         include/vlc_help.h \
103         include/vlc_interface.h \
104         include/vlc_keys.h \
105         include/vlc_messages.h \
106         include/vlc_meta.h \
107         include/vlc_vlm.h \
108         include/vlc_objects.h \
109         include/vlc_playlist.h \
110         include/vlc_threads.h \
111         include/vlc_threads_funcs.h \
112         include/vlc_video.h \
113         include/vout_synchro.h \
114         include/win32_specific.h \
115         include/osd.h \
116         $(NULL)
117
118 HEADERS_include_built = \
119         include/vlc_symbols.h \
120         $(NULL)
121
122 include/vlc_symbols.h: Makefile $(HEADERS_include)
123         srcdir=$(srcdir) $(srcdir)/toolbox --update-includes
124
125 src/misc/modules_plugin.h: Makefile src/misc/modules_plugin.h.in $(HEADERS_include)
126         srcdir=$(srcdir) $(srcdir)/toolbox --update-includes
127
128 src/misc/modules_builtin.h: Makefile src/misc/modules_builtin.h.in
129         srcdir=$(srcdir) $(srcdir)/toolbox --update-includes
130
131 # These dependencies are mandatory
132 $(SOURCES): include/vlc_symbols.h
133 $(SOURCES_libvlc): src/misc/modules_plugin.h src/misc/modules_builtin.h $(LIB_intl)
134
135 ###############################################################################
136 # Optional libintl - FIXME, bad dependencies
137 ###############################################################################
138
139 intl/libintl.a: FORCE
140         cd $(top_builddir)/intl && $(MAKE) $(AM_MAKEFLAGS)
141
142 if BUILD_INTL
143 LIB_intl = intl/libintl.a
144 endif
145
146 ###############################################################################
147 # MacOS X project
148 ###############################################################################
149
150 EXTRA_DIST += \
151         extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib \
152         extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib \
153         extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib \
154         extras/MacOSX/Resources/English.lproj/InfoPlist.strings \
155         extras/MacOSX/Resources/English.lproj/vlc.scriptTerminology \
156         extras/MacOSX/Resources/a52.icns \
157         extras/MacOSX/Resources/aac.icns \
158         extras/MacOSX/Resources/asf.icns \
159         extras/MacOSX/Resources/asx.icns \
160         extras/MacOSX/Resources/avi.icns \
161         extras/MacOSX/Resources/bin.icns \
162         extras/MacOSX/Resources/cue.icns \
163         extras/MacOSX/Resources/dat.icns \
164         extras/MacOSX/Resources/divx.icns \
165         extras/MacOSX/Resources/dv.icns \
166         extras/MacOSX/Resources/generic.icns \
167         extras/MacOSX/Resources/m3u.icns \
168         extras/MacOSX/Resources/mov.icns \
169         extras/MacOSX/Resources/mp3.icns \
170         extras/MacOSX/Resources/mp4.icns \
171         extras/MacOSX/Resources/mpeg.icns \
172         extras/MacOSX/Resources/mpeg1.icns \
173         extras/MacOSX/Resources/mpeg2.icns \
174         extras/MacOSX/Resources/mpeg4.icns \
175         extras/MacOSX/Resources/mpg.icns \
176         extras/MacOSX/Resources/ogg.icns \
177         extras/MacOSX/Resources/ogm.icns \
178         extras/MacOSX/Resources/pls.icns \
179         extras/MacOSX/Resources/srt.icns \
180         extras/MacOSX/Resources/sub.icns \
181         extras/MacOSX/Resources/vlc.icns \
182         extras/MacOSX/Resources/vob.icns \
183         extras/MacOSX/Resources/wma.icns \
184         extras/MacOSX/Resources/wmv.icns \
185         extras/MacOSX/Resources/pause.png \
186         extras/MacOSX/Resources/pause_blue.png \
187         extras/MacOSX/Resources/play.png \
188         extras/MacOSX/Resources/play_blue.png \
189         extras/MacOSX/Resources/stop.png \
190         extras/MacOSX/Resources/stop_blue.png \
191         extras/MacOSX/Resources/display.png \
192         extras/MacOSX/Resources/display_slider.png \
193         extras/MacOSX/Resources/display_track.png \
194         extras/MacOSX/Resources/fullscreen_active.png \
195         extras/MacOSX/Resources/fullscreen_blue.png \
196         extras/MacOSX/Resources/next_active.png \
197         extras/MacOSX/Resources/next_blue.png \
198         extras/MacOSX/Resources/playlistdrawer_active.png \
199         extras/MacOSX/Resources/playlistdrawer_blue.png \
200         extras/MacOSX/Resources/previous_active.png \
201         extras/MacOSX/Resources/previous_blue.png \
202         extras/MacOSX/Resources/skip_forward_active.png \
203         extras/MacOSX/Resources/skip_forward_blue.png \
204         extras/MacOSX/Resources/skip_previous_active.png \
205         extras/MacOSX/Resources/skip_previous_blue.png \
206         extras/MacOSX/Resources/volume_high.png \
207         extras/MacOSX/Resources/volume_low.png \
208         extras/MacOSX/Resources/volumeslider_blue.png \
209         extras/MacOSX/Resources/volumeslider_normal.png \
210         extras/MacOSX/Resources/volumetrack.png \
211         extras/MacOSX/Resources/about_bg.png \
212         extras/MacOSX/Resources/vlc.scriptSuite \
213         extras/MacOSX/Resources/README \
214         extras/MacOSX/vlc.pbproj/project.pbxproj \
215         extras/MacOSX/macosx-dmg \
216         $(NULL)
217
218 ###############################################################################
219 # MS Visual Studio and eMbedded Visual Studio projects
220 ###############################################################################
221
222 EXTRA_DIST += \
223         msvc/vlc.dsw \
224         msvc/libvlc.dsp.in \
225         msvc/plugins.dsp.in \
226         msvc/vlc.dsp.in \
227         msvc/config.h.in \
228         msvc/modules_builtin_msvc.h \
229         evc/vlc.vcw \
230         evc/libvlc.vcp.in \
231         evc/vlc.vcp.in \
232         evc/plugins.vcp.in \
233         evc/vlc.c \
234         evc/config.h.in \
235         evc/modules_builtin_evc.h \
236         $(NULL)
237
238 dist-hook:
239         cp $(distdir)/vlc.ebuild $(distdir)/vlc-${VERSION}.ebuild
240         cd $(distdir) && srcdir=$(srcdir) $(srcdir)/toolbox --update-vc
241
242 ###############################################################################
243 # Building libvlc
244 ###############################################################################
245
246 bin_SCRIPTS = vlc-config
247
248 lib_LIBRARIES = lib/libvlc.a $(LIBRARIES_libvlc_pic)
249
250 lib_libvlc_a_SOURCES = $(SOURCES_libvlc)
251 dist_lib_libvlc_a_SOURCES = src/misc/modules_plugin.h
252 lib_libvlc_a_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
253 lib_libvlc_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags vlc`
254 lib_libvlc_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags vlc`
255
256 lib_libvlc_pic_a_SOURCES = $(SOURCES_libvlc)
257 lib_libvlc_pic_a_CFLAGS = `$(VLC_CONFIG) --cflags vlc pic`
258 lib_libvlc_pic_a_CXXFLAGS = `$(VLC_CONFIG) --cxxflags vlc pic`
259 lib_libvlc_pic_a_OBJCFLAGS = `$(VLC_CONFIG) --objcflags vlc pic`
260
261 if HAVE_BEOS
262 OPT_SOURCES_libvlc_beos = $(SOURCES_libvlc_beos)
263 endif
264 if HAVE_DARWIN
265 OPT_SOURCES_libvlc_darwin = $(SOURCES_libvlc_darwin)
266 endif
267 if HAVE_WIN32
268 OPT_SOURCES_libvlc_win32 = $(SOURCES_libvlc_win32)
269 endif
270 if BUILD_DIRENT
271 OPT_SOURCES_libvlc_dirent = $(SOURCES_libvlc_dirent)
272 endif
273 if BUILD_GETOPT
274 OPT_SOURCES_libvlc_getopt = $(SOURCES_libvlc_getopt)
275 endif
276 if BUILD_MOZILLA
277 if !HAVE_WIN32
278 LIBRARIES_libvlc_pic = lib/libvlc_pic.a
279 endif
280 endif
281
282 EXTRA_DIST += \
283         $(SOURCES_libvlc_beos) \
284         $(SOURCES_libvlc_darwin) \
285         $(SOURCES_libvlc_win32) \
286         $(SOURCES_libvlc_dirent) \
287         $(SOURCES_libvlc_getopt) \
288         $(NULL)
289
290 SOURCES_libvlc_beos = \
291         src/misc/beos_specific.cpp \
292         $(NULL)
293
294 SOURCES_libvlc_darwin = \
295         src/misc/darwin_specific.m \
296         $(NULL)
297
298 SOURCES_libvlc_win32 = \
299         src/misc/win32_specific.c \
300         $(NULL)
301
302 SOURCES_libvlc_dirent = \
303         src/extras/dirent.c \
304         src/extras/dirent.h \
305         $(NULL)
306
307 SOURCES_libvlc_getopt = \
308         src/extras/getopt.c \
309         src/extras/getopt.h \
310         src/extras/getopt1.c \
311         $(NULL)
312
313 SOURCES_libvlc_common = \
314         src/libvlc.c \
315         src/libvlc.h \
316         src/interface/interface.c \
317         src/interface/intf_eject.c \
318         src/playlist/playlist.c \
319         src/playlist/sort.c \
320         src/playlist/loadsave.c \
321         src/playlist/group.c \
322         src/playlist/item.c \
323         src/playlist/item-ext.c \
324         src/playlist/info.c \
325         src/input/input.c \
326         src/input/control.c \
327         src/input/es_out.c \
328         src/input/stream.c \
329         src/input/demux.c \
330         src/input/subtitles.c \
331         src/input/input_ext-plugins.c \
332         src/input/input_ext-intf.c \
333         src/input/input_dec.c \
334         src/input/input_programs.c \
335         src/input/input_clock.c \
336         src/video_output/video_output.c \
337         src/video_output/vout_pictures.c \
338         src/video_output/vout_pictures.h \
339         src/video_output/video_text.c \
340         src/video_output/vout_subpictures.c \
341         src/video_output/vout_synchro.c \
342         src/video_output/vout_intf.c \
343         src/audio_output/common.c \
344         src/audio_output/dec.c \
345         src/audio_output/filters.c \
346         src/audio_output/input.c \
347         src/audio_output/mixer.c \
348         src/audio_output/output.c \
349         src/audio_output/intf.c \
350         src/stream_output/stream_output.c \
351         src/stream_output/announce.c \
352         src/stream_output/sap.c \
353         src/misc/charset.c \
354         src/misc/httpd.c \
355         src/misc/mtime.c \
356         src/misc/block.c \
357         src/misc/modules.c \
358         src/misc/threads.c \
359         src/misc/cpu.c \
360         src/misc/configuration.c \
361         src/misc/iso_lang.c \
362         src/misc/iso-639_def.h \
363         src/misc/messages.c \
364         src/misc/objects.c \
365         src/misc/variables.c \
366         src/misc/error.c \
367         src/misc/net.c \
368         src/misc/vlm.c \
369         src/extras/libc.c \
370         $(NULL)
371
372 SOURCES_libvlc = \
373         $(SOURCES_libvlc_common) \
374         $(OPT_SOURCES_libvlc_beos) \
375         $(OPT_SOURCES_libvlc_darwin) \
376         $(OPT_SOURCES_libvlc_win32) \
377         $(OPT_SOURCES_libvlc_dirent) \
378         $(OPT_SOURCES_libvlc_getopt) \
379         $(NULL)
380
381 ###############################################################################
382 # Building vlc
383 ###############################################################################
384
385 bin_PROGRAMS = vlc
386
387 vlc_SOURCES = src/vlc.c
388
389 vlc_LDFLAGS = `$(VLC_CONFIG) --libs vlc builtin`
390 vlc_LDADD = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
391 vlc_CFLAGS = `$(VLC_CONFIG) --cflags vlc`
392
393 # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
394 # old automake-1.5 bug (automake/279).
395 DEPENDENCIES_vlc = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl)
396
397 vlc$(EXEEXT): $(vlc_OBJECTS) $(DEPENDENCIES_vlc) stamp-builtin
398         @rm -f $(top_builddir)/vlc$(EXEEXT)
399         @case `$(VLC_CONFIG) --linkage vlc builtin` in \
400           c++) echo $(CXXLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ; $(CXXLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ;; \
401           objc) echo $(OBJCLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ; $(OBJCLINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ;; \
402           c|*) echo $(LINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ; $(LINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS) $(LIBS) ;; \
403         esac
404
405 if HAVE_BEOS
406         xres -o $@ $(srcdir)/share/vlc_beos.rsrc
407         mimeset -f $@
408         rm -Rf $(srcdir)/locale ; mkdir -p "$(srcdir)/locale"
409         for i in $(ALL_LINGUAS); do \
410           mkdir -p "$(srcdir)/locale/$${i}/LC_MESSAGES" ; \
411           cp "$(srcdir)/po/$${i}.gmo" \
412             "$(srcdir)/locale/$${i}/LC_MESSAGES/vlc.mo" || true ; \
413         done
414 endif
415
416 # Install the modules and the symlinks
417 install-exec-local:
418         for i in "" `$(VLC_CONFIG) --target plugin` ; do if test -n "$$i" ; then \
419           echo $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | sed -e 's,.*modules/\([^/]*\).*,\1,'`" ; \
420           $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | sed -e 's,.*modules/\([^/]*\).*,\1,'`" ; \
421         fi ; done
422         for i in "" `$(VLC_CONFIG) --target builtin` ; do if test -n "$$i" ; then \
423           echo $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
424           $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
425         fi ; done
426 if BUILD_MOZILLA
427         for i in "" `$(VLC_CONFIG) --target builtin pic` ; do if test -n "$$i" ; then \
428           echo $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
429           $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \
430         fi ; done
431 endif
432         for i in "" $(ALIASES) ; do if test -n "$$i" ; then \
433           rm -f "$(DESTDIR)$(bindir)/$$i" && \
434           ln -s vlc "$(DESTDIR)$(bindir)/$$i" ; \
435         fi ; done
436
437 if HAVE_DARWIN
438 # Create the MacOS X app
439 vlc_app_DATA = VLC.app
440 vlc_appdir = $(bindir)
441 VLC.app: vlc
442         @if test -e "$(top_builddir)/tmp"; then \
443           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
444           false; \
445         else \
446           echo "OK."; mkdir -p "$(top_builddir)/tmp/extras"; \
447         fi
448         rm -Rf $(top_builddir)/VLC.app
449         cp -r $(srcdir)/extras/MacOSX $(top_builddir)/tmp/extras
450         for i in AUTHORS COPYING README.MacOSX.rtf THANKS; do \
451           cp "$(srcdir)/$$i" $(top_builddir)/tmp; \
452         done
453         mkdir -p $(top_builddir)/tmp/modules/audio_output
454         cp $(srcdir)/modules/audio_output/coreaudio.c \
455            $(top_builddir)/tmp/modules/audio_output/coreaudio.c
456         mkdir -p $(top_builddir)/tmp/modules/gui/macosx
457         for i in \
458             about.h \
459             about.m \
460             applescript.h \
461             applescript.m \
462             controls.h \
463             controls.m \
464             info.h \
465             info.m \
466             intf.h \
467             intf.m \
468             macosx.m \
469             misc.h \
470             misc.m \
471             open.h \
472             open.m \
473             output.h \
474             output.m \
475             playlist.h \
476             playlist.m \
477             playlistinfo.h \
478             playlistinfo.m \
479             prefs_widgets.h \
480             prefs_widgets.m \
481             prefs.h \
482             prefs.m \
483             vout.h \
484             vout.m; do \
485           cp "$(srcdir)/modules/gui/macosx/$$i" \
486              $(top_builddir)/tmp/modules/gui/macosx; \
487         done
488         cd $(top_builddir)/tmp/extras/MacOSX && xcodebuild -target vlc | grep -v '^\([ \t]\|$$\)'
489         cp -r $(top_builddir)/tmp/extras/MacOSX/build/vlc.bundle \
490               $(top_builddir)/VLC.app
491         rm -Rf $(top_builddir)/tmp
492         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS
493         $(INSTALL) $(top_builddir)/vlc \
494                    $(top_builddir)/VLC.app/Contents/MacOS/VLC
495         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/modules
496         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
497           if test -n "$$i" ; \
498             then $(INSTALL) "$$i$(LIBEXT)" \
499                            "$(top_builddir)/VLC.app/Contents/MacOS/modules" ; \
500           fi ; done
501         if test -d $(top_builddir)/extras/contrib/vlc-lib; then \
502           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/lib ; \
503           for i in $(top_builddir)/extras/contrib/vlc-lib/*.dylib ; do \
504             $(INSTALL) -m 644 $${i} $(top_builddir)/VLC.app/Contents/MacOS/lib/vlc_`basename $${i}` ; \
505           done ; \
506         fi
507         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/share
508         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/share/http
509         for i in $(srcdir)/share/http/* ; do \
510           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC.app/Contents/MacOS/share/http/`basename $${i}` ; \
511         done ; \
512         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/share/http/vlm
513         for i in $(srcdir)/share/http/vlm/* ; do \
514           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC.app/Contents/MacOS/share/http/vlm/`basename $${i}` ; \
515         done ; \
516         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/share/http/admin
517         for i in $(srcdir)/share/http/admin/* ; do \
518           $(INSTALL) -m 644 $${i} $(top_builddir)/VLC.app/Contents/MacOS/share/http/admin/`basename $${i}` ; \
519         done ; \
520         $(INSTALL) -m 644 $(srcdir)/share/http/admin/.access $(top_builddir)/VLC.app/Contents/MacOS/share/http/admin/.access
521         $(INSTALL) -d $(top_builddir)/VLC.app/Contents/MacOS/locale
522         for i in $(ALL_LINGUAS); do \
523           mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES ; \
524           cp $(srcdir)/po/$${i}.gmo $(top_builddir)/VLC.app/Contents/MacOS/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
525           mkdir -p $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
526           ln -sf ../English.lproj/InfoPlist.strings \
527               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
528           ln -sf ../English.lproj/MainMenu.nib \
529               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
530           ln -sf ../English.lproj/vlc.scriptTerminology \
531               $(top_builddir)/VLC.app/Contents/Resources/$${i}.lproj ; \
532         done
533         printf "APPLVLC#" >| $(top_builddir)/VLC.app/Contents/PkgInfo
534 endif
535
536 if HAVE_WIN32
537 DATA_win32_rc = $(noinst_share_vlc_win32_rc_DATA)
538 noinst_share_vlc_win32_rc_DATA = share/vlc_win32_rc.$(OBJEXT)
539 noinst_share_vlc_win32_rcdir = $(libdir)
540 share/vlc_win32_rc.$(OBJEXT): share/vlc_win32_rc.rc
541         $(WINDRES) -DVERSION=$(VERSION) -DVERSION_NUMBER=`echo $(VERSION).0.0.0 | sed 's/\([0-9]*\)[^.]*\.*\([0-9]*\)[^.]*\.*\([0-9]*\)[^.]*\.*\([0-9]*\).*/\1,\2,\3,\4/'` --include-dir $(srcdir)/share -i $< -o $@
542 endif
543
544 ###############################################################################
545 # Building specific source packages
546 ###############################################################################
547
548 dist-woody: distdir
549         $(remove_distdir_woody)
550         mv $(distdir) $(PACKAGE)-woody-$(VERSION)
551         $(srcdir)/toolbox --make-woody $(PACKAGE)-woody-$(VERSION)
552         $(AMTAR) chof - $(PACKAGE)-woody-$(VERSION) \
553           | GZIP=$(GZIP_ENV) gzip -c >$(PACKAGE)-woody-$(VERSION).tar.gz
554         $(remove_distdir_woody)
555
556 remove_distdir_woody = \
557   { test ! -d $(PACKAGE)-woody-$(VERSION) \
558     || { find $(PACKAGE)-woody-$(VERSION) -type d ! -perm -200 \
559            -exec chmod u+w {} ';' \
560          && rm -fr $(PACKAGE)-woody-$(VERSION); }; }
561
562 ###############################################################################
563 # Building architecture-specific binary packages
564 ###############################################################################
565
566 # XXX: this rule is probably only useful to you if you have exactly
567 # the same setup as me. Contact sam@zoy.org if you need to use it.
568 #
569 package-win32-base:
570 # Check that tmp isn't in the way
571         @if test -e "$(srcdir)/vlc-${VERSION}"; then \
572           echo "Error: please remove $(srcdir)/vlc-${VERSION}, it is in the way"; \
573           false; \
574         else \
575           echo "OK."; mkdir -p "$(srcdir)/vlc-${VERSION}"; \
576         fi
577
578 # Copy relevant files
579         cp "$(srcdir)/vlc.win32.nsi" "$(srcdir)/vlc-${VERSION}/"
580         cp "$(top_builddir)/vlc$(EXEEXT)" "$(srcdir)/vlc-${VERSION}/"
581         cp "$(top_builddir)/vlc.exe.manifest" "$(srcdir)/vlc-${VERSION}/"
582         $(STRIP) "$(srcdir)/vlc-${VERSION}/vlc$(EXEEXT)"
583         @if test -n "$(UPX)"; then \
584            $(UPX) -9 "$(srcdir)/vlc-${VERSION}/vlc$(EXEEXT)"; fi ;
585
586         for file in AUTHORS MAINTAINERS THANKS NEWS COPYING README ; \
587           do sed 's/@/_AT_/' < "$(srcdir)/$$file" > "$(srcdir)/vlc-${VERSION}/$${file}.txt" ; \
588           unix2dos "$(srcdir)/vlc-${VERSION}/$${file}.txt" ; done
589
590         mkdir -p "$(srcdir)/vlc-${VERSION}/plugins"
591         for i in "" `$(VLC_CONFIG) --target plugin` ; do \
592           if test -n "$$i" ; then \
593             $(INSTALL) "$(srcdir)/$$i$(LIBEXT)" \
594             "$(srcdir)/vlc-${VERSION}/plugins/" ; \
595           fi ; done
596
597         for i in "" $(srcdir)/vlc-${VERSION}/plugins/*$(LIBEXT) ; \
598           do if test -n "$$i" ; then $(STRIP) "$$i" ; fi ; \
599              if test -n "$(UPX)" -a -n "$$i"; then $(UPX) -9 "$$i"; fi ; \
600           done
601
602         mkdir $(srcdir)/vlc-${VERSION}/locale
603         for i in $(ALL_LINGUAS); do \
604           mkdir -p "$(srcdir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES" ; \
605           cp "$(srcdir)/po/$${i}.gmo" \
606             "$(srcdir)/vlc-${VERSION}/locale/$${i}/LC_MESSAGES/vlc.mo" \
607             || true ; \
608         done
609
610         mkdir -p $(srcdir)/vlc-${VERSION}/skins/default
611         for i in $(srcdir)/share/skins/default/*.*; do \
612           cp $$i $(srcdir)/vlc-${VERSION}/skins/default/ || true ; \
613         done
614         for i in $(srcdir)/doc/skins/*.txt; do \
615           cp $$i $(srcdir)/vlc-${VERSION}/skins/ || true ; \
616         done
617         mkdir -p $(srcdir)/vlc-${VERSION}/skins2/fonts
618         for i in $(srcdir)/share/skins2/fonts/*.*; do \
619           cp $$i $(srcdir)/vlc-${VERSION}/skins2/fonts/ || true ; \
620         done
621         mkdir -p $(srcdir)/vlc-${VERSION}/skins2/default
622         for i in $(srcdir)/share/skins2/default/*.*; do \
623           cp $$i $(srcdir)/vlc-${VERSION}/skins2/default/ || true ; \
624         done
625         for i in $(srcdir)/share/skins2/*.*; do \
626           cp $$i $(srcdir)/vlc-${VERSION}/skins2/ || true ; \
627         done
628
629         mkdir -p "$(srcdir)/vlc-${VERSION}/http/admin"
630         mkdir -p "$(srcdir)/vlc-${VERSION}/http/vlm"
631         cp $(srcdir)/share/http/*.html $(srcdir)/vlc-${VERSION}/http/ ;
632         cp $(srcdir)/share/http/*.css $(srcdir)/vlc-${VERSION}/http/ ;
633         cp $(srcdir)/share/http/admin/*.html \
634            $(srcdir)/vlc-${VERSION}/http/admin/ ;
635         cp $(srcdir)/share/http/admin/.access \
636            $(srcdir)/vlc-${VERSION}/http/admin/ ;
637         cp $(srcdir)/share/http/vlm/*.html \
638            $(srcdir)/vlc-${VERSION}/http/vlm/ ;
639
640         cp $(srcdir)/share/vlc48x48.ico $(srcdir)/vlc-${VERSION}/ ;
641
642         mkdir -p "$(srcdir)/vlc-${VERSION}/mozilla"
643 if BUILD_MOZILLA
644         cp $(srcdir)/mozilla/*$(LIBEXT) $(srcdir)/vlc-${VERSION}/mozilla/ ;
645         $(STRIP) $(srcdir)/vlc-${VERSION}/mozilla/*$(LIBEXT);
646         @if test $(UPX); then \
647           $(UPX) -9 $(srcdir)/vlc-${VERSION}/mozilla/npvlc$(LIBEXT); fi ; \
648         cp $(srcdir)/mozilla/vlcintf.xpt  $(srcdir)/vlc-${VERSION}/mozilla/ ;
649 endif
650
651 package-win32-base-exe:
652 # Create package 
653         wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe \
654              -- /DVERSION=${VERSION} $(srcdir)/vlc-${VERSION}/vlc.win32.nsi
655
656 package-win32-base-zip:
657 # Create package 
658         zip -r vlc-${VERSION}-win32.zip vlc-${VERSION}
659
660 package-win32-exe: package-win32-base package-win32-base-exe
661 # Clean up
662         rm -Rf $(srcdir)/vlc-${VERSION}
663
664 package-win32-zip: package-win32-base package-win32-base-zip
665 # Clean up
666         rm -Rf $(srcdir)/vlc-${VERSION}
667
668 package-win32: package-win32-base package-win32-base-exe package-win32-base-zip
669 # Clean up
670         rm -Rf $(srcdir)/vlc-${VERSION}
671
672 package-beos:
673 # Check that tmp isn't in the way
674         @if test -e $(srcdir)/tmp; then \
675           echo "Error: please remove $(srcdir)/tmp, it is in the way"; \
676           false ; \
677         else \
678           echo "OK." ; mkdir $(srcdir)/tmp ; \
679         fi
680
681 # Copy relevant files
682         mkdir -p $(srcdir)/tmp/vlc ;
683         cd $(srcdir) && \
684           cp vlc AUTHORS COPYING ChangeLog README THANKS NEWS tmp/vlc/ ;
685 # We cannot use ${PLUGIN_FILES} as it looks like it is too "long" for the BeOS shell...
686         if [ `find $(srcdir)/modules -name "lib*_plugin.so" | wc -l` -gt 0 ]; then \
687           mkdir -p $(srcdir)/tmp/vlc/plugins ; \
688           find $(srcdir)/modules -name "lib*_plugin.so" -exec cp {} $(srcdir)/tmp/vlc/plugins/ \; ; \
689         fi
690         for i in $(ALL_LINGUAS); do \
691           mkdir -p $(srcdir)/tmp/vlc/locale/$${i}/LC_MESSAGES ; \
692           cp $(srcdir)/po/$${i}.gmo $(srcdir)/tmp/vlc/locale/$${i}/LC_MESSAGES/vlc.mo || true ; \
693         done
694
695 # Strip files and create package
696         strip --strip-debug --strip-unneeded $(srcdir)/tmp/vlc/vlc ;
697         if [ -d $(srcdir)/tmp/vlc/plugins ]; then \
698           strip --strip-debug --strip-unneeded $(srcdir)/tmp/vlc/plugins/lib*_plugin.so ; \
699         fi
700         xres -o $(srcdir)/tmp/vlc/vlc $(srcdir)/share/vlc_beos.rsrc ;
701         find $(srcdir)/tmp/vlc -exec mimeset -f {} \; ;
702         mv $(srcdir)/tmp/vlc $(srcdir)/tmp/vlc-${VERSION} ;
703         (cd $(srcdir)/tmp ; zip -9 -r vlc-${VERSION}-BeOS.zip vlc-${VERSION} )
704         mv $(srcdir)/tmp/vlc-${VERSION}-BeOS.zip $(srcdir)/ ;
705
706 # Clean up
707         rm -Rf $(srcdir)/tmp ;
708
709 package-macosx:
710 # Check that tmp isn't in the way
711         @if test -e "$(top_builddir)/tmp"; then \
712           echo "Error: please remove $(top_builddir)/tmp, it is in the way"; \
713           false; \
714         else \
715           echo "OK."; mkdir -p "$(top_builddir)/tmp"; \
716         fi
717
718 # Copy relevant files 
719         cp -R "$(top_builddir)/VLC.app" "$(top_builddir)/tmp/"
720         cd "$(srcdir)" && cp AUTHORS COPYING ChangeLog README README.MacOSX.rtf THANKS NEWS $(top_builddir)/tmp/
721
722 # Create disk image 
723         $(srcdir)/extras/MacOSX/macosx-dmg 25 "vlc-${VERSION}" $(top_builddir)/tmp/* 
724
725 # Clean up
726         rm -Rf $(top_builddir)/tmp
727
728 package-translations:
729         @if test -e "$(srcdir)/vlc-translations-${VERSION}"; then \
730           echo "Error: please remove $(srcdir)/vlc-translations-${VERSION}, it is in the way"; \
731           false; \
732         else \
733           echo "OK."; mkdir -p "$(srcdir)/vlc-translations-${VERSION}"; \
734         fi
735 # Copy translations
736         for i in $(ALL_LINGUAS); do \
737           cp "$(srcdir)/po/$${i}.po" \
738             "$(srcdir)/vlc-translations-${VERSION}/$${i}.po" \
739             || true ; \
740         done
741         cp "$(srcdir)/doc/translations.txt" \
742           "$(srcdir)/vlc-translations-${VERSION}/README.txt"
743
744         echo "#!/bin/sh" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
745         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
746         echo 'if test $$# != 1; then' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
747         echo "  echo \"Usage: convert-po.sh <.po file>\"" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
748         echo "  exit 1" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
749         echo "fi" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
750         echo "" >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
751         echo 'msgfmt --statistics -o vlc.mo $$1' >>"$(srcdir)/vlc-translations-$(VERSION)/convert.po.sh"
752
753         $(AMTAR) chof - $(srcdir)/vlc-translations-$(VERSION) \
754           | GZIP=$(GZIP_ENV) gzip -c >$(srcdir)/vlc-translations-$(VERSION).tar.gz
755
756 ###############################################################################
757 # Stamp rules
758 ###############################################################################
759 clean: clean-stamp
760 clean-stamp:
761         rm -f stamp-builtin
762
763 stamp-builtin: FORCE
764         @for dep in "" `$(VLC_CONFIG) --target builtin`; do \
765           if test "$${dep}" -nt "$(top_builddir)/vlc$(EXEEXT)"; then \
766             rm -f $@; \
767             break; \
768           fi; \
769         done
770         @if test ! -f $@; then printf "" > $@; fi
771
772 ###############################################################################
773 # Force rule
774 ###############################################################################
775 FORCE: