summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 250cca4fbfabb1514b40688a80083bd65b663d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS=-Wall -W -pipe -O2

rtwatch: rtwatch.o
	$(CC) $(CFLAGS) -o $@ $^

suid:
	chown root:root rtwatch
	chmod u+s rtwatch

clean:
	rm -f rtwatch rtwatch.o