From: Felix Paul Kühne Date: Thu, 27 Jan 2005 00:49:46 +0000 (+0000) Subject: * contrib/Makefile: remove the BUILDDIRS on clean-src as well to prevent the disposal... X-Git-Tag: 0.8.2~1248 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=41e7f0ab1159706e20a66479a7bec47c20d5f0a3;p=vlc * contrib/Makefile: remove the BUILDDIRS on clean-src as well to prevent the disposal of outdated stuff and its mixture with newer libraries * contrib/src/Makefile: touch .aclocal after copying the aclocal files, so this isn't done everytime make runs --- diff --git a/extras/contrib/Makefile b/extras/contrib/Makefile index dd34263bea..a549ec9ed0 100644 --- a/extras/contrib/Makefile +++ b/extras/contrib/Makefile @@ -2,7 +2,7 @@ # Makefile : Build vlc-contrib files # *************************************************************************** # Copyright (C) 2003 VideoLAN -# $Id: Makefile,v 1.5 2003/11/23 14:00:25 massiot Exp $ +# $Id$ # # Authors: Christophe Massiot # @@ -47,6 +47,7 @@ bin: contrib-macosx.tar.bz2 ranlib lib/*\.a clean-src: FORCE + rm -rf $(BUILDDIRS) $(MAKE) -C src clean-src clean-bin: FORCE @@ -62,7 +63,7 @@ package: FORCE exit 1 ; \ fi mkdir tmp - tar cf - bin include lib vlc-lib share/aclocal* share/autoconf* \ + tar cf - bin sbin include lib vlc-lib share/aclocal* share/autoconf* \ share/automake* share/gettext* \ | (cd tmp; tar xf -) ./change_prefix.sh tmp $(PREFIX) @@CONTRIB_PREFIX@@ diff --git a/extras/contrib/src/Makefile b/extras/contrib/src/Makefile index 9e9e677fef..362a052a27 100644 --- a/extras/contrib/src/Makefile +++ b/extras/contrib/src/Makefile @@ -1,7 +1,7 @@ # *************************************************************************** # src/Makefile : Dearchive and compile all files necessary # *************************************************************************** -# Copyright (C) 2003, 2004 VideoLAN +# Copyright (C) 2003, 2004, 2005 VideoLAN # $Id$ # # Authors: Christophe Massiot @@ -924,7 +924,7 @@ libcdio: libcdio-$(CDIO_VERSION).tar.gz $(EXTRACT_GZ) .cdio: libcdio - (cd $<; ./configure --prefix=$(PREFIX) --without-libcddb --without-vcdinfo && make && make install) + (cd $<; ./configure --prefix=$(PREFIX) --without-vcdinfo && make && make install) touch $@ CLEAN_FILE += .cdio @@ -1080,12 +1080,13 @@ DISCLEAN_PKG += libopendaap-$(DAAP_VERSION).tar.bz2 # *************************************************************************** # Copy aclocal files -# This is neceserry for --missing aclocal to succeed after a +# This is necessary for --missing aclocal to succeed after a # configure.ac/Makefile.am change in the vlc root dir # ************************************************************************** .aclocal: cp -R $(PREFIX)/share/aclocal/* $(PREFIX)/../../m4/ + touch $@ # ***************************************************************************