add Makefile

This commit is contained in:
ch1p 2020-12-10 16:33:57 +03:00
parent 418727e513
commit 0c59dc2354

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
PREFIX = /usr/local
INSTALL = /usr/bin/env install
all:
@echo "run \"make install\" to install to $(PREFIX)"
install:
$(INSTALL) swap_workspaces $(PREFIX)/bin
.PHONY: all install