Changeset 2228ef325666286ee61144fa447ea5be48665764
- Timestamp:
- 08/04/05 22:28:23
(4 years ago)
- Author:
- Derk-Jan Hartman <hartman@videolan.org>
- git-committer:
- Derk-Jan Hartman <hartman@videolan.org> 1112992103 +0000
- git-parent:
[fdebeceeb5cd7a33c6bcb717a13d95f81b81a0b8]
- git-author:
- Derk-Jan Hartman <hartman@videolan.org> 1112992103 +0000
- Message:
* Disable "make bin" in the contrib system and give a warning.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4bc98f0 |
r2228ef3 |
|
| 2 | 2 | # Makefile : Build vlc-contrib files |
|---|
| 3 | 3 | # *************************************************************************** |
|---|
| 4 | | # Copyright (C) 2003 VideoLAN |
|---|
| | 4 | # Copyright (C) 2003-2005 VideoLAN |
|---|
| 5 | 5 | # $Id$ |
|---|
| 6 | 6 | # |
|---|
| 7 | 7 | # Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| | 8 | # Derk-Jan Hartman <hartman at videolan dot org> |
|---|
| 8 | 9 | # |
|---|
| 9 | 10 | # This program is free software; you can redistribute it and/or modify |
|---|
| … | … | |
| 35 | 36 | $(WGET) $(CONTRIB_URL) |
|---|
| 36 | 37 | |
|---|
| 37 | | bin: contrib-macosx.tar.bz2 |
|---|
| 38 | | @if test -d tmp; then \ |
|---|
| 39 | | echo "Move away ./tmp, it's in the way" ; \ |
|---|
| 40 | | exit 1 ; \ |
|---|
| 41 | | fi |
|---|
| 42 | | mkdir tmp |
|---|
| 43 | | bunzip2 -c $< | (cd tmp; tar xf -) |
|---|
| 44 | | ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX) |
|---|
| 45 | | (cd tmp; tar cf - .) | tar xf - |
|---|
| 46 | | rm -rf tmp |
|---|
| 47 | | ranlib lib/*\.a |
|---|
| | 38 | bin: FORCE |
|---|
| | 39 | @echo "make bin isn't in a functional state at this moment. Please use make src" |
|---|
| | 40 | |
|---|
| | 41 | #The disabled make bin |
|---|
| | 42 | #bin: contrib-macosx.tar.bz2 |
|---|
| | 43 | # @if test -d tmp; then \ |
|---|
| | 44 | # echo "Move away ./tmp, it's in the way" ; \ |
|---|
| | 45 | # exit 1 ; \ |
|---|
| | 46 | # fi |
|---|
| | 47 | # mkdir tmp |
|---|
| | 48 | # bunzip2 -c $< | (cd tmp; tar xf -) |
|---|
| | 49 | # ./change_prefix.sh tmp @@CONTRIB_PREFIX@@ $(PREFIX) |
|---|
| | 50 | # (cd tmp; tar cf - .) | tar xf - |
|---|
| | 51 | # rm -rf tmp |
|---|
| | 52 | # ranlib lib/*\.a |
|---|
| 48 | 53 | |
|---|
| 49 | 54 | clean-src: FORCE |
|---|