Add docs folder (#366)

* generated man pages added

* updated dates and tidy footers

* reflect removal of localiso feature

* trying to keep up... re-generating

* merged up to 4ec224c and regenerated

* minor removal ommission fixed

* Regenerated README.md added

only significant difference is Slackware display name is
 as per quickget

* change variant to edition per refactoring

* updated manuals with new braille parameter

* updated generated Readme with new braille parameter

* keepeing up

* revert README.md to upstream for noise-suppression

* fixed pretty name issue in manuals

* fixed pretty name issues in Readme

* fixed conflict

* update ubuntu releases from name to number
This commit is contained in:
Phil Clifford 2022-02-25 23:03:58 +00:00 committed by GitHub
parent 03c5b9fc52
commit 47b2479d92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 2620 additions and 0 deletions

42
docs/Makefile Normal file
View file

@ -0,0 +1,42 @@
include pandoc-man.mk
ifeq ($(PREFIX),)
PREFIX := /usr/local
endif
datarootdir := $(PREFIX)/share
datadir := $(datarootdir)
mandir := $(datarootdir)/man
bindir := $(PREFIX)/bin
all: quickget.1 quickemu.1 quickemu_conf.1
clean:
rm *.1
install_docs: all
install -d $(DESTDIR)$(mandir)/man1
install -m 644 quickget.1 $(DESTDIR)$(mandir)/man1
install -m 644 quickemu.1 $(DESTDIR)$(mandir)/man1
install -m 644 quickemu_conf.1 $(DESTDIR)$(mandir)/man1
# install -m 644 quickgui.1 $(DESTDIR)$(mandir)/man1
install_bins:
install -d $(DESTDIR)$(bindir)
install -m 755 ../quickget $(DESTDIR)$(bindir)
install -m 755 ../quickemu $(DESTDIR)$(bindir)
install -m 755 ../macrecovery $(DESTDIR)$(bindir)
install: install_bins install_docs
uninstall::
rm -f $(DESTDIR)$(mandir)/man1/quickget.1
rm -f $(DESTDIR)$(mandir)/man1/quickemu.1
rm -f $(DESTDIR)$(mandir)/man1/quickemu_conf.1
rm -f $(DESTDIR)$(bindir)/quickget
rm -f $(DESTDIR)$(bindir)/quickemu
rm -f $(DESTDIR)$(bindir)/macrecovery
.PHONY: all