aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3b5a18e9d7d93c9cff399c376c52c2002273fb36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
DESTDIR ?= /usr/local

all: pm-suspend

install: pm-suspend pm-suspend.1
	install -D -m 755 ./pm-suspend $(DESTDIR)/sbin/pm-suspend
	install -D -m 644 ./pm-suspend.1 $(DESTDIR)/share/man/man1/pm-suspend.1

uninstall:
	rm -f $(DESTDIR)/sbin/pm-suspend
	rm -f $(DESTDIR)/share/man/man1/pm-suspend.1