forked from Plemya-x/ALR
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| NAME := alr
 | |
| GIT_VERSION = $(shell git describe --tags )
 | |
| 
 | |
| DESTDIR ?=
 | |
| PREFIX ?= /usr/local
 | |
| BIN := ./$(NAME)
 | |
| INSTALED_BIN := $(DESTDIR)/$(PREFIX)/bin/$(NAME)
 | |
| COMPLETIONS_DIR := ./scripts/completion
 | |
| BASH_COMPLETION := $(COMPLETIONS_DIR)/bash
 | |
| ZSH_COMPLETION := $(COMPLETIONS_DIR)/zsh
 | |
| INSTALLED_BASH_COMPLETION := $(DESTDIR)$(PREFIX)/share/bash-completion/completions/$(NAME)
 | |
| INSTALLED_ZSH_COMPLETION := $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_$(NAME)
 | |
| 
 | |
| ADD_LICENSE_BIN := go run github.com/google/addlicense@4caba19b7ed7818bb86bc4cd20411a246aa4a524
 | |
| GOLANGCI_LINT_BIN := go run github.com/golangci/golangci-lint/cmd/golangci-lint@v1.62.2
 | |
| 
 | |
| .PHONY: build install clean clear uninstall check-no-root
 | |
| 
 | |
| build: check-no-root $(BIN)
 | |
| 
 | |
| export CGO_ENABLED := 0
 | |
| $(BIN):
 | |
| 	go build -ldflags="-X 'gitea.plemya-x.ru/xpamych/ALR/internal/config.Version=$(GIT_VERSION)'" -o $@
 | |
| 
 | |
| check-no-root:
 | |
| 	@if [[ "$$(whoami)" == 'root' ]]; then \
 | |
| 		echo "This target shouldn't run as root" 1>&2; \
 | |
| 		exit 1; \
 | |
| 	fi
 | |
| 
 | |
| install: \
 | |
| 	$(INSTALED_BIN) \
 | |
| 	$(INSTALLED_BASH_COMPLETION) \
 | |
| 	$(INSTALLED_ZSH_COMPLETION)
 | |
| 	@echo "Installation done!"
 | |
| 
 | |
| $(INSTALED_BIN): $(BIN)
 | |
| 	install -Dm755 $< $@
 | |
| 
 | |
| $(INSTALLED_BASH_COMPLETION): $(BASH_COMPLETION)
 | |
| 	install -Dm755 $< $@
 | |
| 
 | |
| $(INSTALLED_ZSH_COMPLETION): $(ZSH_COMPLETION)
 | |
| 	install -Dm755 $< $@
 | |
| 
 | |
| uninstall:
 | |
| 	rm -f \
 | |
| 		$(INSTALED_BIN) \
 | |
| 		$(INSTALLED_BASH_COMPLETION) \
 | |
| 		$(INSTALLED_ZSH_COMPLETION)
 | |
| 
 | |
| clean clear:
 | |
| 	rm -f $(BIN)
 | |
| 
 | |
| OLD_FILES=$$(< old-files)
 | |
| IGNORE_OLD_FILES := $(foreach file,$(shell cat old-files),-ignore $(file))
 | |
| update-license:
 | |
| 	$(ADD_LICENSE_BIN) -v -f license-header-old-files.tmpl $(OLD_FILES)
 | |
| 	$(ADD_LICENSE_BIN) -v -f license-header.tmpl $(IGNORE_OLD_FILES) .
 | |
| 
 | |
| fmt:
 | |
| 	$(GOLANGCI_LINT_BIN) run --fix
 |