mtsc/matter-chroot/Makefile

10 lines
171 B
Makefile
Raw Normal View History

2024-08-11 14:45:54 +00:00
PREFIX = /usr
install:
2024-08-18 18:49:31 +00:00
install -Dm755 "main.sh" $(DESTDIR)/$(PREFIX)/bin/matter-chroot
2024-08-11 14:45:54 +00:00
uninstall:
rm $(DESTDIR)/$(PREFIX)/lib/matter-chroot
.PHONY: install uninstall