Files
welcome/Makefile
2021-12-13 05:26:04 +00:00

9 lines
180 B
Makefile

PREFIX ?= /usr/local
install:
$(info installing welcome to $(PREFIX))
@install -m 755 welcome.rb $(PREFIX)/bin/firstlogin
@install -m 644 editors /etc/editors
.PHONY: install