Files
motd/Makefile

8 lines
117 B
Makefile
Raw 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
.PHONY: install