Create Makefile

This commit is contained in:
deepend-tildeclub 2020-04-26 13:58:03 -06:00 committed by GitHub
parent cbb2edd46f
commit 03b81666ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

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