Makefile
は次のとおりです。
%.pdf: %.tex
rubber -d $<
ディレクトリにdoc.tex
がある場合、make doc.pdf
はdoc.pdf
をビルドします。問題は、make
と入力すると、オートコンプリートによって何も得られないことです。make doc.tex
にオートコンプリートすることもできません。それについて何ができますか?
bash-completion
パッケージはこれを行いません。両方のコマンドラインオプションを処理し、Makefile
ターゲットのリストを抽出するためにいくつかのアクロバットを行いますが、ワイルドカードを適用したり、その他の方法で処理したりして一致を生成しようとはしません。任意パターンルール。
それは可能ですが、ここにいくつかの注意点がある単純なバージョンがあります。
function _mkcache() {
local _file="$1"
# add "-r" to omit defaults (60+ rules)
${MAKE:-make} ${_file:+-f "$_file"} -qp 2>/dev/null |
gawk '/^# *Make data base/,/^# *Finished Make data base/{
if (/^# Not a target/) { getline; next }
## handle "target: ..."
if (match($0,/^([^.#% ][^:%=]+) *:($|[^=])(.*)/,bits)) {
#if (bits[3]=="") next # OPT: skip phony
printf("%s\n",bits[1])
}
## handle "%.x [...]: %.y [| x]", split into distinct targets/prereqs
else if (match($0,/^([^:]*%[^:]*) *(::?) *(.*%.*) *(\| *(.*))?/,bits)) {
#if (bits[3]=="%") next # OPT: skip wildcard ones
nb1=split(bits[1],bb1)
nb3=split(bits[3],bb3)
for (nn=1; nn<=nb1; nn++)
for (mm=1; mm<=nb3; mm++)
printf("%s : %s\n",bb1[nn],bb3[mm])
}
## handle fixed (no %) deps
else if (match($0,/^([^:]*%[^:]*) *(::?) *([^%]*)$/,bits)) {
if (bits[3]=="") next # phony
printf("%s : %s\n",bits[1],bits[3])
}
## handle old form ".c.o:" rewrite to new form "%.o: %.c"
else if (match($0,/^\.([^.]+)\.([^.]+): *(.*)/,bits)) {
printf("%%.%s : %%.%s\n", bits[2],bits[1])
}
}' > ".${_file:-Makefile}.targets"
}
function _bc_make() {
local ctok=${COMP_WORDS[COMP_CWORD]} # curr token
local ptok=${COMP_WORDS[COMP_CWORD-1]} # prev token
local -a mkrule maybe
local try rr lhs rhs rdir pat makefile=Makefile
## check we're not doing any make options
[[ ${ctok:0:1} != "-" && ! $ptok =~ ^-[fCIjloW] ]] && {
COMPREPLY=()
[[ "$makefile" -nt .${makefile}.targets ]] &&
_mkcache "$makefile"
mapfile -t mkrule < ".${makefile}.targets"
# mkrule+=( "%.o : %.c" ) # stuff in extra rules
for rr in "${mkrule[@]}"; do
IFS=": " read lhs rhs <<< $rr
## special "archive(member):"
[[ "$lhs" =~ ^(.*)?\((.+)\) ]] && {
continue # not handled
}
## handle simple targets
[[ "$rhs" == "" ]] && {
COMPREPLY+=( $(compgen -W "$lhs" -- "$ctok" ) )
continue
}
## rules with a path, like "% : RCS/%,v"
rdir=""
[[ "$rhs" == */* ]] && rdir="${rhs/%\/*/}/"
rhs=${rhs/#*\//}
## expand (glob) that matches RHS
## if current token already ends in a "." strip it
## match by replacing "%" stem with "*"
[[ $ctok == *. ]] && try="${rdir}${rhs/\%./$ctok*}" \
|| try="${rdir}${rhs/\%/$ctok*}"
maybe=( $(compgen -G "$try") ) # try must be quoted
## maybe[] is an array of filenames from expanded prereq globs
(( ${#maybe[*]} )) && {
[[ "$rhs" =~ % ]] && {
## promote rhs glob to a regex: % -> (.*)
rhs="${rhs/./\\.}"
pat="${rdir}${rhs/\%/(.*)}"
## use regex to extract stem from RHS, sub "%" on LHS
for nn in "${maybe[@]}"; do
[[ $nn =~ $pat ]] && {
COMPREPLY+=( "${lhs/\%/${BASH_REMATCH[1]}}" )
}
done
} || {
# fixed prereqs (no % on RHS)
COMPREPLY+=( "${lhs/\%/$ctok}" )
}
}
done
return
}
COMPREPLY=() #default
}
complete -F _bc_make ${MAKE:-make}
2つの部分があります。関数_mkcache
はMakefile
からすべてのルールとターゲットを抽出し、これらをキャッシュします。また、少し処理を行うため、そのキャッシュではルールが単一の "target : pre-req
"形式に簡略化されます。
次に、完了関数_bc_make
は、完了を試みたトークンを受け取り、ターゲットとの照合を試み、パターンルールを使用して、前提条件と完了のためのWordに基づいてglobを展開します。 1つ以上の一致が見つかった場合、パターンルールに基づいてターゲットのリストを作成します。
GNU make
が想定されています。それは正しく処理するはずです:
.c.o
→%.o : %.c
RCS/
)-r
をmake
に追加)警告、およびサポートされていません:
make
ほどスマートではありませんVPATH
またはvpath
.SUFFIXES
make -C dir
make
オプションの拡張TERMCAP
など)Makefile
以外の名前のMakefile上記のいくつかは比較的簡単に追加できますが、アーカイブ処理のようなものはそれほど単純ではありません。