motd/Makefile

8 lines
117 B
Makefile
Raw Normal View History

2020-04-26 19:58:03 +00:00
PREFIX ?= /etc
install:
$(info installing motd to $(PREFIX))
@install -m 644 motd $(PREFIX)/motd
.PHONY: install