diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f0878c9 --- /dev/null +++ b/Makefile @@ -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