Merge pull request #1007 from AladW/fetch-discard
[aurutils.git] / Makefile
blob8895a44767c36b2fc8757c0f8381be1d2bdb6760
1 PROGNM = aurutils
2 PREFIX ?= /usr
3 SHRDIR ?= $(PREFIX)/share
4 BINDIR ?= $(PREFIX)/bin
5 LIBDIR ?= $(PREFIX)/lib
6 ETCDIR ?= /etc
7 AURUTILS_LIB_DIR ?= $(LIBDIR)/$(PROGNM)
8 AURUTILS_VERSION ?= $(shell git describe --tags || true)
9 ifeq ($(AURUTILS_VERSION),)
10 AURUTILS_VERSION := 10
11 endif
13 .PHONY: shellcheck install build completion aur
15 build: aur completion
17 aur: aur.in
18 sed -e 's|AURUTILS_LIB_DIR|$(AURUTILS_LIB_DIR)|' \
19 -e 's|AURUTILS_VERSION|$(AURUTILS_VERSION)|' $< >$@
21 completion:
22 @$(MAKE) -C completions bash zsh
24 shellcheck: aur
25 @shellcheck -x -f gcc -e 1071 aur lib/*
27 install-aur: aur
28 @install -Dm755 aur -t '$(DESTDIR)$(BINDIR)'
30 install: install-aur
31 @install -Dm755 lib/aur-* -t '$(DESTDIR)$(LIBDIR)/$(PROGNM)'
32 @install -Dm644 man1/* -t '$(DESTDIR)$(SHRDIR)/man/man1'
33 @install -Dm644 man7/* -t '$(DESTDIR)$(SHRDIR)/man/man7'
34 @install -Dm644 LICENSE -t '$(DESTDIR)$(SHRDIR)/licenses/$(PROGNM)'
35 @install -Dm644 README.md -t '$(DESTDIR)$(SHRDIR)/doc/$(PROGNM)'
36 @install -Dm644 examples/* -t '$(DESTDIR)$(SHRDIR)/doc/$(PROGNM)/examples'
37 @install -dm755 aurutils '$(DESTDIR)$(ETCDIR)/$(PROGNM)'
38 @$(MAKE) -C completions DESTDIR='$(DESTDIR)' install-bash install-zsh