23 lines
534 B
Makefile
23 lines
534 B
Makefile
DESTDIR = /usr/local/bin
|
|
INSTALL_PATH = $(DESTDIR)/launcher.sh
|
|
|
|
all: install
|
|
|
|
install: $(INSTALL_PATH)
|
|
|
|
$(INSTALL_PATH): launcher.sh
|
|
@echo "Installing launcher.sh to $(DESTDIR)"
|
|
@install -m 755 $< $(DESTDIR)
|
|
|
|
uninstall:
|
|
@echo "Removing launcher.sh from $(DESTDIR)"
|
|
@rm -f $(INSTALL_PATH)
|
|
|
|
help:
|
|
@echo "Available targets:"
|
|
@echo " make install - Install launcher.sh to $(DESTDIR)"
|
|
@echo " make uninstall - Remove launcher.sh from $(DESTDIR)"
|
|
@echo " make help - Show this help message"
|
|
|
|
.PHONY: all install uninstall
|