]> git.sesse.net Git - vlc/commitdiff
* contrib/Makefile: remove the BUILDDIRS on clean-src as well to prevent the disposal...
authorFelix Paul Kühne <fkuehne@videolan.org>
Thu, 27 Jan 2005 00:49:46 +0000 (00:49 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Thu, 27 Jan 2005 00:49:46 +0000 (00:49 +0000)
* contrib/src/Makefile: touch .aclocal after copying the aclocal files, so this isn't done everytime make runs

extras/contrib/Makefile
extras/contrib/src/Makefile

index dd34263beaf880bfb08aa98dd0c0e177a7d13478..a549ec9ed0be03935f7691b3ef4ba7fd40987115 100644 (file)
@@ -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 <massiot@via.ecp.fr>
 # 
@@ -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@@
index 9e9e677fef5df9bde03de7d835f3d6acf0dccd28..362a052a27cbc642f5711c5c17b3804bec82dc63 100644 (file)
@@ -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 <massiot@via.ecp.fr>
@@ -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 $@
 
 
 # ***************************************************************************