2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-03 04:03:25 +00:00
Hilbish/Makefile
gokul swaminathan 1f1d36f06c
Added Makefile (#5)
* Added a makefile

* Update readme with makefile instructions
2021-03-22 17:23:24 -04:00

26 lines
460 B
Makefile

PREFIX ?= /usr
BINDIR ?= $(PREFIX)/bin
LIBDIR ?= $(PREFIX)/share/hilbish
build:
@go build
install: build
@install -v -d "$(BINDIR)/" && install -m 0755 -v hilbish "$(BINDIR)/hilbish"
@mkdir -p "$(LIBDIR)"
@cp libs preload.lua .hilbishrc.lua "$(LIBDIR)" -r
@echo "Hilbish Installed"
uninstall:
@rm -vrf \
"$(BINDIR)/hilbish" \
"$(LIBDIR)"
@echo "Hilbish Uninstalled"
clean:
@go clean
all: build install
.PHONY: install uninstall build clean