Files
welcome/Makefile

8 lines
142 B
Makefile
Raw Normal View History

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