welcome/Makefile

8 lines
142 B
Makefile
Raw Normal View History

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