Create Makefile

This commit is contained in:
deepend-tildeclub 2020-04-26 13:28:32 -06:00 committed by GitHub
parent b4c3f94ba0
commit 2094f19532
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 ?= /usr/local
install:
$(info installing wiki to $(PREFIX))
@install -m 755 wiki $(PREFIX)/bin/wiki
.PHONY: install