From 58d4f8b0694d7a3160a8c509ebf5b8a1800806db Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Tue, 17 Mar 2020 21:32:43 -0600 Subject: [PATCH] Create Makefile --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile 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