Files
motd/Makefile

10 lines
217 B
Makefile
Raw Permalink Normal View History

2020-04-26 13:58:03 -06:00
PREFIX ?= /etc
install:
$(info installing motd to $(PREFIX))
@install -m 644 motd $(PREFIX)/motd
2020-04-26 22:18:52 -06:00
$(info installing sshd-banner to $(PREFIX))
2020-04-26 22:17:51 -06:00
@install -m 644 sshd-banner $(PREFIX)/ssh/sshd-banner
2020-04-26 13:58:03 -06:00
.PHONY: install