-
Notifications
You must be signed in to change notification settings - Fork 51
/
Makefile
17 lines (15 loc) · 822 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
install: reinstall
install -v -b -Dm644 src/ykfde.conf "$(DESTDIR)/etc/ykfde.conf"
reinstall:
install -Dm644 src/hooks/ykfde "$(DESTDIR)/usr/lib/initcpio/hooks/ykfde"
install -Dm644 src/install/ykfde "$(DESTDIR)/usr/lib/initcpio/install/ykfde"
install -Dm755 src/ykfde-suspend "$(DESTDIR)/usr/lib/ykfde-suspend/ykfde-suspend"
install -Dm755 src/initramfs-suspend "$(DESTDIR)/usr/lib/ykfde-suspend/initramfs-suspend"
install -Dm644 src/ykfde-suspend.service "$(DESTDIR)/usr/lib/systemd/system/ykfde-suspend.service"
install -Dm755 src/ykfde-enroll "$(DESTDIR)/usr/bin/ykfde-enroll"
install -Dm755 src/ykfde-format "$(DESTDIR)/usr/bin/ykfde-format"
install -Dm755 src/ykfde-open "$(DESTDIR)/usr/bin/ykfde-open"
install -Dm644 README.md "$(DESTDIR)/usr/share/doc/ykfde/README.md"
test:
./testrun.sh
all: install