红联Linux门户
Linux帮助

Bash的另类shell Makefile

发布时间:2007-12-06 00:15:41来源:红联作者:NetFlow
无赖对 Makefile 不太熟悉,为了编译数量不断增加的独立的 .cpp 文件,只有想个另类的办法了。考虑了好几种方法,最后以 Makefile为壳,用 bash 暗渡陈仓。

Makefile 如下:

引用:
main: null.out

null.out:

./compile.sh

clean:

rm *.out


compile.sh 就是实际执行 make 命令的了:

引用:
#!/bin/bash

for cpp in *.cpp

do

out="${cpp%.cpp}.out"

if test ${cpp} -nt ${out}

then

printf "g++ -o %s %s\n" "${out}" "${cpp}"

g++ -o ${out} ${cpp}

fi

done
文章评论

共有 0 条评论