Compare commits

..

2 Commits

Author SHA1 Message Date
TorchedSammy c4438579f6
build: remove all from install target 2022-04-14 10:11:20 -04:00
buffet 59e81d3996
build: improve makefile 2022-04-14 10:05:35 -04:00
1 changed files with 16 additions and 17 deletions

View File

@ -1,31 +1,30 @@
PREFIX ?= /usr PREFIX ?= /usr
DESTDIR ?=
BINDIR ?= $(PREFIX)/bin BINDIR ?= $(PREFIX)/bin
LIBDIR ?= $(PREFIX)/share/hilbish LIBDIR ?= $(PREFIX)/share/hilbish
build: MY_GOFLAGS = -ldflags "-s -w"
@go build -ldflags "-s -w"
dev: all: dev
@go build -ldflags "-s -w -X main.version=$(shell git describe --tags)"
dev: MY_GOFLAGS = -ldflags "-s -w -X main.version=$(shell git describe --tags)"
dev: build
build:
go build $(MY_GOFLAGS)
install: install:
@install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v hilbish "$(DESTDIR)$(BINDIR)/hilbish" install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v hilbish "$(DESTDIR)$(BINDIR)/hilbish"
@mkdir -p "$(DESTDIR)$(LIBDIR)" mkdir -p "$(DESTDIR)$(LIBDIR)"
@cp libs docs emmyLuaDocs prelude .hilbishrc.lua "$(DESTDIR)$(LIBDIR)" -r cp -r libs docs emmyLuaDocs prelude .hilbishrc.lua "$(DESTDIR)$(LIBDIR)"
@grep "$(DESTDIR)$(BINDIR)/hilbish" -qxF /etc/shells || echo "$(DESTDIR)$(BINDIR)/hilbish" >> /etc/shells grep -qxF "$(DESTDIR)$(BINDIR)/hilbish" /etc/shells || echo "$(DESTDIR)$(BINDIR)/hilbish" >> /etc/shells
@echo "Hilbish Installed"
uninstall: uninstall:
@rm -vrf \ rm -vrf \
"$(DESTDIR)$(BINDIR)/hilbish" \ "$(DESTDIR)$(BINDIR)/hilbish" \
"$(DESTDIR)$(LIBDIR)" "$(DESTDIR)$(LIBDIR)"
@sed -i '/hilbish/d' /etc/shells sed -i '/hilbish/d' /etc/shells
@echo "Hilbish Uninstalled"
clean: clean:
@go clean go clean
all: build install .PHONY: all dev build install uninstall clean
.PHONY: install uninstall build dev clean