mirror of
https://github.com/clearlinux/clear-linux-documentation.git
synced 2026-04-29 03:23:42 +00:00
* Build manpages with "make man". Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Adds "make man" to github workflows. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Remove shell script dependency. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Change git URLs to https. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Moved git clone to Makefile. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Fixed typo. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Adding pandoc install. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Moved to Makefile. Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * First commit toward programmatic creation of manpages.rst Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Multiple updates: 1. man-pages.rst now generated by script. 2. Updated Makefile and make.bat with "man" and "clean-man" recipes. 3. Fixed typo in conf.py. 4. Many improvements to manpages.py Signed-off-by: Kevin Putnam <kevin.putnam@intel.com> * Updated readme for man pages and added man-pages.rst Signed-off-by: Kevin Putnam <kevin.putnam@intel.com>
25 lines
863 B
Makefile
25 lines
863 B
Makefile
man:
|
|
git clone https://github.com/clearlinux/clr-man-pages.git
|
|
git clone https://github.com/clearlinux/clr-power-tweaks.git
|
|
git clone https://github.com/clearlinux/clrtrust.git
|
|
git clone https://github.com/clearlinux/mixer-tools.git
|
|
git clone https://github.com/clearlinux/swupd-client.git
|
|
git clone https://github.com/clearlinux/telemetrics-client.git
|
|
git clone https://github.com/clearlinux/tallow.git
|
|
git clone https://github.com/clearlinux/micro-config-drive.git
|
|
python3 manpages.py
|
|
- mkdir ../../../reference/manpages
|
|
cp *.rst ../../../reference/manpages
|
|
|
|
clean-man:
|
|
- rm -rf clr-man-pages
|
|
- rm -rf clr-power-tweaks
|
|
- rm -rf clrtrust
|
|
- rm -rf mixer-tools
|
|
- rm -rf swupd-client
|
|
- rm -rf telemetrics-client
|
|
- rm -rf tallow
|
|
- rm -rf micro-config-drive
|
|
- rm *.rst
|
|
- rm ../../../reference/manpages/*.rst
|
|
- rm ../../../reference/man-pages.rst
|