diff options
author | kitsunyan | 2018-05-05 12:52:23 +0000 |
---|---|---|
committer | kitsunyan | 2018-05-05 12:52:23 +0000 |
commit | 4b07b34b80ecbf8cfb88945a56ce021525b74741 (patch) | |
tree | 6b05af865055e3a3278c3be2511aaec43d7949e9 /Makefile | |
parent | dbe10af0544069641f48cee263717eff68dee07e (diff) |
Add patches for pacman completions from git
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -21,8 +21,10 @@ DIST = \ Makefile \ pakku.conf \ completion/bash.patch \ + completion/bash-git.patch \ completion/make.sh \ completion/zsh.patch \ + completion/zsh-git.patch \ doc/asciidoc.conf \ ${MAN_PAGES:=.txt} \ lib/*.nim \ @@ -80,11 +82,17 @@ all: \ ${TARGETS} \ ${TARGETS_NODIST} -completion/bash: completion/make.sh completion/bash.patch +completion/bash: \ + completion/make.sh \ + completion/bash.patch \ + completion/bash-git.patch @echo "GEN: $@" @(cd completion && ./make.sh 'bash') -completion/zsh: completion/make.sh completion/zsh.patch +completion/zsh: \ + completion/make.sh \ + completion/zsh.patch \ + completion/zsh-git.patch @echo "GEN: $@" @(cd completion && ./make.sh 'zsh') |