1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-24 05:11:08 +02:00
zsh/Completion/User/_make
1999-11-02 12:35:24 +00:00

29 lines
814 B
Text

#compdef make gmake pmake
local prev="$words[CURRENT-1]" file ret=1 expl
if [[ "$prev" = -[CI] ]]; then
_files -/
elif [[ "$prev" = -[foW] ]]; then
_files
else
file="$words[(I)-f]"
if (( file )); then
file="$words[file+1]"
elif [[ -e Makefile ]]; then
file=Makefile
elif [[ -e makefile ]]; then
file=makefile
else
file=''
fi
_description expl 'make target'
[[ -n "$file" ]] &&
compadd "$expl[@]" - \
$(awk '/^[a-zA-Z0-9][^\/ \t]+:/ {print $1}
/^\.include *<bsd\.port\.(subdir\.|pre\.|)mk>/ || /^\.include *".*mk\/bsd\.pkg\.(subdir\.|)mk"/ {
print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum" }' \
FS=: $file) && ret=0
(( ret )) && { compset -P 1 '*\='; _files }
fi