aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 05655eb959bdc83a572b63a648032b9c9f1a324b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
PREFIX=/usr

all:
	@: do nothing

install:
	mkdir -p "$(DESTDIR)$(PREFIX)/bin"
	install -m 755 sysrss.py "$(DESTDIR)$(PREFIX)/bin/sysrss"

clean:
	@echo nothing to clean

.PHONY: clean