Commit 44b51330 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

contrib: 'make list' to list packages

parent e2ad1bb0
......@@ -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
......@@ -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) $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment