mirror of https://github.com/tildeclub/motd.git
8 lines
117 B
Makefile
8 lines
117 B
Makefile
|
PREFIX ?= /etc
|
||
|
|
||
|
install:
|
||
|
$(info installing motd to $(PREFIX))
|
||
|
@install -m 644 motd $(PREFIX)/motd
|
||
|
|
||
|
.PHONY: install
|