Commit 2228ef32 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Disable "make bin" in the contrib system and give a warning.

parent fdebecee
# *************************************************************************** # ***************************************************************************
# Makefile : Build vlc-contrib files # Makefile : Build vlc-contrib files
# *************************************************************************** # ***************************************************************************
# Copyright (C) 2003 VideoLAN # Copyright (C) 2003-2005 VideoLAN
# $Id$ # $Id$
# #
# Authors: Christophe Massiot <massiot@via.ecp.fr> # Authors: Christophe Massiot <massiot@via.ecp.fr>
# Derk-Jan Hartman <hartman 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
...@@ -34,17 +35,21 @@ src: FORCE ...@@ -34,17 +35,21 @@ src: FORCE
contrib-macosx.tar.bz2: FORCE contrib-macosx.tar.bz2: FORCE
$(WGET) $(CONTRIB_URL) $(WGET) $(CONTRIB_URL)
bin: contrib-macosx.tar.bz2 bin: FORCE
@if test -d tmp; then \ @echo "make bin isn't in a functional state at this moment. Please use make src"
echo "Move away ./tmp, it's in the way" ; \
exit 1 ; \ #The disabled make bin
fi #bin: contrib-macosx.tar.bz2
mkdir tmp # @if test -d tmp; then \
bunzip2 -c $< | (cd tmp; tar xf -) # echo "Move away ./tmp, it's in the way" ; \
./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX) # exit 1 ; \
(cd tmp; tar cf - .) | tar xf - # fi
rm -rf tmp # mkdir tmp
ranlib lib/*\.a # bunzip2 -c $< | (cd tmp; tar xf -)
# ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX)
# (cd tmp; tar cf - .) | tar xf -
# rm -rf tmp
# ranlib lib/*\.a
clean-src: FORCE clean-src: FORCE
rm -rf $(BUILDDIRS) rm -rf $(BUILDDIRS)
......
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