pm-suspend/Makefile
2025-04-07 10:53:33 +02:00

11 lines
297 B
Makefile

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