This commit is contained in:
Ben Harris
2020-03-07 20:31:20 -05:00
commit 400f696a58
5 changed files with 151 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
PREFIX ?= /usr/local
install:
$(info installing welcome to $(PREFIX))
@install -m 755 welcome.rb $(PREFIX)/bin/welcome
.PHONY: install