Commit d8c7d7de authored by Christophe Mutricy's avatar Christophe Mutricy

Add a package-win32 target

parent 3336795c
# *************************************************************************** # ***************************************************************************
# Makefile : Build vlc-contrib files # Makefile : Build vlc-contrib files
# *************************************************************************** # ***************************************************************************
# Copyright (C) 2003-2005 the VideoLAN team # Copyright (C) 2003-2006 the VideoLAN team
# $Id$ # $Id$
# #
# Authors: Christophe Massiot <massiot@via.ecp.fr> # Authors: Christophe Massiot <massiot@via.ecp.fr>
# Derk-Jan Hartman <hartman at videolan dot org> # Derk-Jan Hartman <hartman at videolan dot org>
# Christophe Mutricy <xtophe at videolan dot org>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
...@@ -69,7 +70,7 @@ clean: FORCE ...@@ -69,7 +70,7 @@ clean: FORCE
@echo " you can still run 'make clean-bin' manually if needed" @echo " you can still run 'make clean-bin' manually if needed"
$(MAKE) clean-src $(MAKE) clean-src
package: FORCE package-macosx: FORCE
@if test -d tmp; then \ @if test -d tmp; then \
echo "Move away ./tmp, it's in the way" ; \ echo "Move away ./tmp, it's in the way" ; \
exit 1 ; \ exit 1 ; \
...@@ -82,4 +83,16 @@ package: FORCE ...@@ -82,4 +83,16 @@ package: FORCE
(cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2 (cd tmp; tar cf - .) | bzip2 -c > contrib-macosx.tar.bz2
rm -rf tmp rm -rf tmp
package-win32: FORCE
@if test -d tmp; then \
echo "Move away ./tmp, it's in the way" ; \
exit 1 ; \
fi
mkdir -p tmp/usr/win32
tar cf - bin sbin include lib share/aclocal* share/autoconf* \
share/automake* share/gettext* \
| (cd tmp/usr/win32; tar xf -)
./change_prefix.sh tmp $(PREFIX) /usr/win32
(cd tmp; tar cf - usr/win32/) | bzip2 -c > contrib-`date +%Y%m%d`-win32-bin-gcc-`$(CC) --version|head -n 1|cut -f 3 -d ' '`-only.tar.bz2
rm -rf tmp
FORCE: FORCE:
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment