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