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