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
44b51330
Commit
44b51330
authored
Jul 04, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: 'make list' to list packages
parent
e2ad1bb0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
contrib/bootstrap
contrib/bootstrap
+2
-1
contrib/src/main.mak
contrib/src/main.mak
+18
-0
No files found.
contrib/bootstrap
View file @
44b51330
...
...
@@ -190,6 +190,7 @@ Other targets:
* make fetch fetch required source tarballs
* make fetch-all fetch all source tarballs
* make distclean clean everything and undo bootstrap
* make clean clean everything
* make mostlyclean clean everything except source tarballs
* make clean clean everything
* make list list packages
EOF
contrib/src/main.mak
View file @
44b51330
...
...
@@ -230,6 +230,24 @@ package: install
(
cd
$(PREFIX)
/..
&&
\
tar
cvJ
$(
notdir
$(PREFIX)
)
/
)
>
../vlc-contrib-
$(HOST)
-
$(DATE)
.tar.xz
list
:
@
echo
All packages:
@
echo
'
$(PKGS_ALL)
'
|
fmt
@
echo
Distribution-provided packages:
@
echo
'
$(PKGS_FOUND)
'
|
fmt
@
echo
Automatically selected packages:
@
echo
'
$(PKGS_AUTOMATIC)
'
|
fmt
@
echo
Manually deselected packages:
@
echo
'
$(PKGS_DISABLE)
'
|
fmt
@
echo
Manually selected packages:
@
echo
'
$(PKGS_ENABLE)
'
|
fmt
@
echo
Depended-on packages:
@
echo
'
$(PKGS_DEPS)
'
|
fmt
@
echo
To-be-built packages:
@
echo
'
$(PKGS)
'
|
fmt
.PHONY
:
all fetch fetch-all install mostlyclean clean distclean package list
# CMake toolchain
toolchain.cmake
:
$(RM)
$@
...
...
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