Changeset 8c5e9b07316830ea6831755f04ecac02d1f0ca66

Show
Ignore:
Timestamp:
03/29/08 15:34:09 (3 months ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1206801249 +0100
git-parent:

[d21779b98ec08fd9ef91468ad76d3737f4209e2c]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1206801213 +0100
Message:

somewhat fix VLC-release.app: (well, isn't distributable yet)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Makefile.am

    rd7b8bf4 r8c5e9b0  
    333333noinst_DATA = VLC.app 
    334334endif 
    335 # VLC-release.app is the old VLC.app target 
     335# VLC-release.app for packaging and giving it to your friends 
     336# use package-macosx to get a nice dmg 
    336337VLC-release.app: vlc 
    337338    ( cd src && make install ) 
     
    406407    rm -Rf $(top_builddir)/tmp 
    407408    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS 
    408     ACTION="VLC-release.app" src_dir=$(srcdir) build_dir=$(top_builddir) sh $(srcdir)/projects/macosx/framework/Pre-Compile.sh 
     409    $(INSTALL) $(top_builddir)/src/.libs/vlc \ 
     410           $(top_builddir)/VLC-release.app/Contents/MacOS/VLC 
     411    ln -sf ./VLC $(top_builddir)/VLC-release.app/Contents/MacOS/clivlc 
     412    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/modules 
     413    for i in "" `$(VLC_CONFIG) --target plugin` ; do \ 
     414      if test -n "$$i" ; \ 
     415        then $(INSTALL) "`pwd`/`dirname $$i`/.libs/`basename $$i`$(LIBEXT)" \ 
     416               "$(top_builddir)/VLC-release.app/Contents/MacOS/modules" ; \ 
     417      fi ; done 
     418    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/lib ; \ 
     419      for i in $(srcdir)/src/.libs/*.dylib ; do \ 
     420        $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/lib/`basename $${i}` ; \ 
     421      done ; 
    409422    $(INSTALL) -d $(top_builddir)/VLC-release.app/Contents/MacOS/share/luaplaylist 
    410423    for i in $(srcdir)/share/luaplaylist/*.* ; do \ 
     
    504517    find $(top_builddir)/VLC-release.app -type f -exec chmod ugo+r '{}' \; 
    505518 
     519# This is just for development purposes.  
     520# The resulting VLC.app will only in this tree. 
    506521VLC.app: vlc  
    507522    ( cd src && make install )