add manpage for retro-tags
FossilOrigin-Name: fd2edef55293f8f42f2bf7e23180ee76b8e720d0d0e31cf5289ddeb72a7441e2
This commit is contained in:
parent
f19aa703c3
commit
1cc11de1c6
3 changed files with 22 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -31,6 +31,7 @@ install: build install-data install-docs install-examples install-manpages
|
|||
install -c -m 755 bin/retro-unu $(DESTDIR)$(PREFIX)/bin/retro-unu
|
||||
install -c -m 755 bin/retro-describe $(DESTDIR)$(PREFIX)/bin/retro-describe
|
||||
install -c -m 755 bin/retro-document $(DESTDIR)$(PREFIX)/bin/retro-document
|
||||
install -c -m 755 example/retro-tags.forth $(DESTDIR)$(PREFIX)/bin/retro-tags
|
||||
|
||||
install-strip: build install-data install-docs install-examples
|
||||
install -m 755 -d -- $(DESTDIR)/bin
|
||||
|
@ -41,6 +42,7 @@ install-strip: build install-data install-docs install-examples
|
|||
install -c -m 755 -s bin/retro-unu $(DESTDIR)$(PREFIX)/bin/retro-unu
|
||||
install -c -m 755 bin/retro-describe $(DESTDIR)$(PREFIX)/bin/retro-describe
|
||||
install -c -m 755 bin/retro-document $(DESTDIR)$(PREFIX)/bin/retro-document
|
||||
install -c -m 755 example/retro-tags.forth $(DESTDIR)$(PREFIX)/bin/retro-tags
|
||||
|
||||
install-data:
|
||||
install -m 755 -d -- $(DESTDIR)$(DATADIR)
|
||||
|
@ -68,6 +70,7 @@ install-manpages:
|
|||
install -c -m 644 man/retro-document.1 $(MANDIR)/retro-document.1
|
||||
install -c -m 644 man/retro-muri.1 $(MANDIR)/retro-muri.1
|
||||
install -c -m 644 man/retro-unu.1 $(MANDIR)/retro-unu.1
|
||||
install -c -m 644 man/retro-tags.1 $(MANDIR)/retro-tags.1
|
||||
|
||||
test: bin/retro
|
||||
./bin/retro tests/test-core.forth
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# ------------------------------------------------------------
|
||||
|
||||
rm tags
|
||||
rm -f tags
|
||||
touch tags
|
||||
for f in *.forth; do retro $0 "$f" >>tags ; done
|
||||
for f in *.retro; do retro $0 "$f" >>tags ; done
|
||||
|
|
18
man/retro-tags.1
Normal file
18
man/retro-tags.1
Normal file
|
@ -0,0 +1,18 @@
|
|||
.Dd August 2019
|
||||
.Dt RETRO-TAGS 1
|
||||
.Os
|
||||
.Sh RETRO-TAGS
|
||||
.Nm retro-tags
|
||||
.Nd "a modern, pragmatic forth development system"
|
||||
.Sh SYNOPSIS
|
||||
.Nm
|
||||
.Sh DESCRIPTION
|
||||
RETRO is a modern, pragmatic Forth drawing influences from many
|
||||
sources. It's clean, elegant, tiny, and easy to grasp and adapt
|
||||
to various uses.
|
||||
|
||||
.Nm
|
||||
is a tool for extracting code from fenced blocks in literate
|
||||
sources and generating a tags file compatible with ctags.
|
||||
.Sh AUTHORS
|
||||
.An Charles Childers Aq Mt crc@forthworks.com
|
Loading…
Reference in a new issue