diff options
author | Kyle Sanderson <kyle.leet@gmail.com> | 2023-02-22 19:40:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 19:40:47 -0800 |
commit | e192de54fd31bd71fb327afd5ecb5cd7a69dde7d (patch) | |
tree | 2e4b48e36213e8fd5386526d26eb663c856d1df7 /docs | |
parent | 4f7194f5658be1744b587a7fa4397705c61b505c (diff) |
Add binary addons clean documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.Android.md | 6 | ||||
-rw-r--r-- | docs/README.FreeBSD.md | 6 | ||||
-rw-r--r-- | docs/README.Linux.md | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/docs/README.Android.md b/docs/README.Android.md index 3cf0b74449..b83c027911 100644 --- a/docs/README.Android.md +++ b/docs/README.Android.md @@ -279,6 +279,12 @@ Build a specific group of add-ons: ``` make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons ADDONS="pvr.*" ``` + +Clean-up binary add-ons: +``` +make -C tools/depends/target/binary-addons clean +``` + For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located at [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md) **[back to top](#table-of-contents)** diff --git a/docs/README.FreeBSD.md b/docs/README.FreeBSD.md index 8424cc1aa6..ca29d13c84 100644 --- a/docs/README.FreeBSD.md +++ b/docs/README.FreeBSD.md @@ -168,6 +168,12 @@ Build a specific group of add-ons: ``` sudo gmake -j$(sysctl hw.ncpu | awk '{print $2}') -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="pvr.*" ``` + +Clean-up binary add-ons: +``` +sudo gmake -C tools/depends/target/binary-addons clean +``` + For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located at [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md) **NOTE:** `PREFIX=/usr/local` should match Kodi's `-DCMAKE_INSTALL_PREFIX=` prefix used in **[section 4.1](#41-configure-build)**. diff --git a/docs/README.Linux.md b/docs/README.Linux.md index 01ae57c9ee..2789aae1a6 100644 --- a/docs/README.Linux.md +++ b/docs/README.Linux.md @@ -252,6 +252,12 @@ Build a specific group of add-ons: ``` sudo make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="pvr.*" ``` + +Clean-up binary add-ons: +``` +sudo make -C tools/depends/target/binary-addons clean +``` + For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located here [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md) **NOTE:** `PREFIX=/usr/local` should match Kodi's `-DCMAKE_INSTALL_PREFIX=` prefix used in **[section 4.1](#41-configure-build)**. |