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

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

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