Compare commits

...

3 Commits

Author SHA1 Message Date
31d7c63114 Add Makefile 2024-10-11 16:26:59 -04:00
e575f1b3d3 Add .gitignore 2024-10-11 16:26:52 -04:00
e55136e433 More man page tweaks 2024-10-11 16:26:30 -04:00
3 changed files with 32 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/bulb

30
Makefile Normal file
View File

@ -0,0 +1,30 @@
.POSIX:
.SUFFIXES:
HARE=hare
HAREFLAGS=
DESTDIR=
PREFIX=/usr/local
BINDIR=$(PREFIX)/bin
MANDIR=$(PREFIX)/share/man
all: bulb
bulb:
$(HARE) build $(HAREFLAGS) -o $@ cmd/$@/
check:
$(HARE) test $(HAREFLAGS)
clean:
rm -f bulb
install:
mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1
install -Dm755 bulb $(DESTDIR)$(BINDIR)/bulb
install -Dm755 doc/*.1 $(DESTDIR)$(MANDIR)/man1
uninstall:
rm -f $(DESTDIR)$(BINDIR)/bulb
.PHONY: all check clean install uninstall

View File

@ -82,7 +82,7 @@ that the receiving user(s) be both logged in and monitoring their terminal for
any messages to ever get through. The
.BR bulb (1)
command was written to support asynchronous, persistent conversations between
users of the same system. It is also possible to create bulletins, MOTDs, etc.
users of the same system.
.\"
.SH AUTHOR