Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
fae0cf51
Commit
fae0cf51
authored
Aug 31, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build a separate non-installable VLC for easier debugging
parent
138c463b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
Makefile.am
Makefile.am
+1
-1
bin/Makefile.am
bin/Makefile.am
+8
-3
No files found.
Makefile.am
View file @
fae0cf51
...
...
@@ -392,7 +392,7 @@ endif
vlc$(EXEEXT)
:
Makefile.am
rm
-f
--
vlc vlc.tmp
echo
'#! /bin/sh'
>
vlc.tmp
echo
'exec "$$(dirname "$$0")/bin/vlc
$(EXEEXT)
" "--plugin-path=$$(dirname "$$0")/modules" "$$@"'
>>
vlc.tmp
echo
'exec "$$(dirname "$$0")/bin/vlc
-static
$(EXEEXT)
" "--plugin-path=$$(dirname "$$0")/modules" "$$@"'
>>
vlc.tmp
chmod
+x vlc.tmp
mv
-f
--
vlc.tmp vlc
...
...
bin/Makefile.am
View file @
fae0cf51
# Building vlc
#
bin_PROGRAMS
=
vlc
noinst_PROGRAMS
=
vlc-static
EXTRA_PROGRAMS
=
vlc-wrapper
AM_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
vlc
`
if
!HAVE_WIN32
bin_PROGRAMS
+=
vlc-wrapper
endif
...
...
@@ -17,14 +21,15 @@ vlc_wrapper_SOURCES = rootwrap.c
vlc_DEPENDENCIES
=
../src/libvlc.la
vlc_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
vlc
`
vlc_LDFLAGS
=
`
$(VLC_CONFIG)
--ldflags
vlc
`
# vlc needs libvlccore for locale conversion
vlc_LDADD
=
../src/libvlc.la ../src/libvlccore.la
$(LTLIBINTL)
\
`
$(VLC_CONFIG)
-libs
vlc
`
#vlc$(EXEEXT): $(vlc_OBJECTS) $(vlc_DEPENDENCIES)
# $(LINK) $(vlc_OBJECTS) $(vlc_LDADD) $(vlc_LDFLAGS)
vlc_static_SOURCES
=
$(vlc_SOURCES)
vlc_static_DEPENDENCIES
=
$(vlc_DEPENDENCIES)
vlc_static_LDADD
=
$(vlc_LDADD)
vlc_static_LDFLAGS
=
$(vlc_LDFLAGS)
-no-install
-static
if
HAVE_WIN32
vlc_LDADD
+=
vlc_win32_rc.
$(OBJEXT)
...
...
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