Files
welcome-bash/Makefile
deepend-tildeclub 58d4f8b069 Create Makefile
2020-03-17 21:32:43 -06:00

13 lines
250 B
Makefile

BINDIR ?= /usr/local/bin
install:
@echo installing the executable to $(BINDIR)
@mkdir -p $(BINDIR)
@install -m 755 welcome $(BINDIR)
uninstall:
@echo removing the executable from $(BINDIR)
@rm -f $(BINDIR)/welcome
.PHONY: install uninstall