aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: e8bdcfa392ca228a9fd04497a97dba4ef61485aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
PREFIX = /usr/local

CFLAGS = -Wall -Wno-missing-braces -Wextra -Wpedantic

all: watch

install: watch
	cp watch $(PREFIX)/bin/watch
	cp watch.1 $(PREFIX)/man/man1/watch.1

uninstall:
	rm $(PREFIX)/bin/watch
	rm $(PREFIX)/man/man1/watch.1