summaryrefslogtreecommitdiff
path: root/Makefile
blob: b0b7e6c7221c557799e3cbf39dc4dc16dc352a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS = -Wall -Wextra

cswatch: cswatch.c

install: cswatch
	sudo cp cswatch /usr/bin

clean:
	rm cswatch

uninstall: clean
	rm /usr/bin/cswatch