fish-shell/share/functions/__fish_print_make_targets.fish
Terje Larsen 2740cc80d2 improve make target completion
- Support completing dynamic make targets.
- Support completing make targets when using -C/--directory.
- Support `-Cdir/path`, `-C dir/path`
- Support `--directory=dir/path`, `--directory dir/path`

This detects if the make command have the `-p` switch otherwise it
assumes it is BSD make and will run a different command to try to figure
out the available targets.
2016-12-21 19:04:15 -08:00

28 lines
890 B
Fish

function __fish_print_make_targets --argument directory
# Since we filter based on localized text, we need to ensure the
# text will be using the correct locale.
set -lx LC_ALL C
if test -z "$directory"
set directory '.'
end
set -l bsd_make
if make -C $directory -pn >/dev/null ^/dev/null
set bsd_make 0
else
set bsd_make 1
end
for file in $directory/{GNUmakefile,Makefile,makefile}
if test -f $file
if test "$bsd_make" = 0
make -C $directory -prRn | awk -v RS= -F: '/^# Files/,/^# Finished Make data base/ {if ($1 !~ "^[#.]") {print $1}}' ^/dev/null
else
make -C $directory -d g1 -rn >/dev/null ^| awk -F, '/^#\*\*\* Input graph:/,/^$/ {if ($1 !~ "^#... ") {gsub(/# /,"",$1); print $1}}' ^/dev/null
end
break
end
end
end