clean: Remove images and temporary build files
image: Build an image (see below for more information).
manifest: Show all package that will be installed into the image
+ package_whatdepends: Show which packages have a dependency on this
package_depends: Show installation dependency of the package
image:
make manifest PACKAGES="<pkg1> [<pkg2> [<pkg3> ...]]" # include extra packages
make manifest STRIP_ABI=1 # remove ABI version from printed package names
+
+package_whatdepends:
+ List "all" packages that have a dependency on this package
+ You can use the following parameters:
+
+ make package_whatdepends PACKAGE="<pkg>"
+
package_depends:
List "all" packages dependency of the package
You can use the following parameters:
$(if $(PROFILE),USER_PROFILE="$(PROFILE_FILTER)") \
$(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)"))
-whatdepends: FORCE
+package_whatdepends: FORCE
ifeq ($(PACKAGE),)
@echo 'Variable `PACKAGE` is not set but required by `whatdepends`'
@exit 1
@$(OPKG) depends -A $(PACKAGE)
-.SILENT: help info image manifest whatdepends package_depends
+.SILENT: help info image manifest package_whatdepends package_depends