dotfiles/sourcecode/install.mk

10 lines
121 B
Makefile
Raw Normal View History

2020-08-31 22:20:19 -05:00
PREFIX ?= /usr/local
all: $(EXE)
install: $(EXE)
install -Dm755 $(EXE) $(DESTDIR)$(PREFIX)/bin/
clean:
rm -f $(EXE)