Create Makefile

This commit is contained in:
deepend-tildeclub 2020-03-17 21:32:43 -06:00 committed by GitHub
parent 14f9f64e09
commit 58d4f8b069
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
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