welcome/Makefile

8 lines
139 B
Makefile
Raw Normal View History

2020-03-08 01:31:20 +00:00
PREFIX ?= /usr/local
install:
$(info installing welcome to $(PREFIX))
@install -m 755 welcome.rb $(PREFIX)/bin/welcome
.PHONY: install