aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 6cf5d8f288a5f3ad3187a6414571f05d8f126e99 (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)/bin/pm-suspend
	install -D -m 644 ./pm-suspend.1 $(DESTDIR)/share/man/man1/pm-suspend.1

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