Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
8c5e9b07
Commit
8c5e9b07
authored
Mar 29, 2008
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
somewhat fix VLC-release.app: (well, isn't distributable yet)
parent
d21779b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
Makefile.am
Makefile.am
+17
-2
No files found.
Makefile.am
View file @
8c5e9b07
...
...
@@ -332,7 +332,8 @@ if HAVE_DARWIN
if
BUILD_VLC
noinst_DATA
=
VLC.app
endif
# VLC-release.app is the old VLC.app target
# VLC-release.app for packaging and giving it to your friends
# use package-macosx to get a nice dmg
VLC-release.app
:
vlc
(
cd
src
&&
make
install
)
rm
-Rf
"
$(top_builddir)
/tmp"
...
...
@@ -405,7 +406,19 @@ VLC-release.app: vlc
$(top_builddir)
/VLC-release.app
;
\
rm
-Rf
$(top_builddir)
/tmp
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS
ACTION
=
"VLC-release.app"
src_dir
=
$(srcdir)
build_dir
=
$(top_builddir)
sh
$(srcdir)
/projects/macosx/framework/Pre-Compile.sh
$(INSTALL)
$(top_builddir)
/src/.libs/vlc
\
$(top_builddir)
/VLC-release.app/Contents/MacOS/VLC
ln
-sf
./VLC
$(top_builddir)
/VLC-release.app/Contents/MacOS/clivlc
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS/modules
for
i
in
""
`
$(VLC_CONFIG)
--target
plugin
`
;
do
\
if
test
-n
"
$$
i"
;
\
then
$(INSTALL)
"
`
pwd
`
/
`
dirname
$$
i
`
/.libs/
`
basename
$$
i
`
$(LIBEXT)
"
\
"
$(top_builddir)
/VLC-release.app/Contents/MacOS/modules"
;
\
fi
;
done
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS/lib
;
\
for
i
in
$(srcdir)
/src/.libs/
*
.dylib
;
do
\
$(INSTALL)
-m
644
$
${i}
$(top_builddir)
/VLC-release.app/Contents/MacOS/lib/
`
basename
$
${i}
`
;
\
done
;
$(INSTALL)
-d
$(top_builddir)
/VLC-release.app/Contents/MacOS/share/luaplaylist
for
i
in
$(srcdir)
/share/luaplaylist/
*
.
*
;
do
\
$(INSTALL)
-m
644
$
${i}
$(top_builddir)
/VLC-release.app/Contents/MacOS/share/luaplaylist/
`
basename
$
${i}
`
;
\
...
...
@@ -503,6 +516,8 @@ VLC-release.app: vlc
find
$(top_builddir)
/VLC-release.app
-type
d
-exec
chmod
ugo+rx
'{}'
\;
find
$(top_builddir)
/VLC-release.app
-type
f
-exec
chmod
ugo+r
'{}'
\;
# This is just for development purposes.
# The resulting VLC.app will only in this tree.
VLC.app
:
vlc
(
cd
src
&&
make
install
)
rm
-Rf
$(top_builddir)
/tmp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment