Compare commits
No commits in common. "31d7c63114b752474680fe72f35d7d890db8eafe" and "9b31e4081dc3943a299473278c7f00b8deaa1538" have entirely different histories.
31d7c63114
...
9b31e4081d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
/bulb
|
30
Makefile
30
Makefile
@ -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
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user