Compare commits

..

No commits in common. "31d7c63114b752474680fe72f35d7d890db8eafe" and "9b31e4081dc3943a299473278c7f00b8deaa1538" have entirely different histories.

3 changed files with 1 additions and 32 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
/bulb

View File

@ -1,30 +0,0 @@
.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.
users of the same system. It is also possible to create bulletins, MOTDs, etc.
.\"
.SH AUTHOR