mirror of
https://github.com/tildeclub/motd.git
synced 2026-01-23 19:00:19 +00:00
10 lines
231 B
Makefile
10 lines
231 B
Makefile
PREFIX ?= /etc
|
|
|
|
install:
|
|
$(info installing motd to $(PREFIX))
|
|
@install -m 644 motd $(PREFIX)/motd
|
|
$(info installing sshd-banner to $(PREFIX))
|
|
@install -m 644 sshd-banner $(PREFIX)/ssh/sshd-banner
|
|
|
|
.PHONY: install
|