diff options
author | John Ankarström <john@ankarstrom.se> | 2021-07-22 11:26:23 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-07-22 11:30:09 +0200 |
commit | 46345060aa9414aad838acad2af11176fa094891 (patch) | |
tree | 38d9e86cb16102fd1b04aa34be3d959546c99076 /Makefile | |
parent | 94f90dc4f48ee7f6bc1aa3a1116f20b714df89c9 (diff) | |
download | when-46345060aa9414aad838acad2af11176fa094891.tar.gz |
Rename to when
This is to resolve the name conflict with another program called
watch, which is for watching command output.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,12 +2,12 @@ BINDIR = /usr/local/bin MANDIR = /usr/local/man CFLAGS = -Wall -Wextra -pedantic -O2 -all: watch +all: when -install: watch - cp watch $(BINDIR)/watch - cp watch.1 $(MANDIR)/man1/watch.1 +install: when + cp when $(BINDIR)/when + cp when.1 $(MANDIR)/man1/when.1 uninstall: - rm $(BINDIR)/watch - rm $(MANDIR)/man1/watch.1 + rm $(BINDIR)/when + rm $(MANDIR)/man1/when.1 |