Create Makefile

This commit is contained in:
deepend-tildeclub
2020-04-26 13:58:03 -06:00
committed by GitHub
parent cbb2edd46f
commit 03b81666ef

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
PREFIX ?= /etc
install:
$(info installing motd to $(PREFIX))
@install -m 644 motd $(PREFIX)/motd
.PHONY: install