welcome/Makefile

9 lines
180 B
Makefile
Raw Permalink 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
2021-12-13 05:26:04 +00:00
@install -m 644 editors /etc/editors
2020-03-08 01:31:20 +00:00
.PHONY: install