Linux makefile 和shell文件相互调用实例详解
shell 文件内调用makefile文件:
#!/bin/bash cd ctemplate-2.1 ./configure sudo make -f install cd ../ cd TemplateProcesser make
说明:./configure文件是shell脚本文件,即shell内调用shell文件是很容易的;TemplateProcesser目录内有Makefile文件,调用方式,直接:make
makefile文件内调用shell脚本文件:
SHELL := /bin/bash test: @pwd cd ./TemplateProcesser && pwd sh ./build.sh @pwd
说明:build.sh为shell脚本文件。
调用perl文件 /usr/bin/perl *.pl 调用python文件 /usr/bin/env *.py
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关推荐
libao 2020-09-16
xiaonamylove 2020-08-16
tianhuak 2020-11-24
以梦为马不负韶华 2020-10-20
彼岸随笔 2020-10-20
yutou0 2020-10-17
applecarelte 2020-10-16
ourtimes 2020-10-16
huha 2020-10-16
laisean 2020-11-11
大牛牛 2020-10-30
firefaith 2020-10-30
liguojia 2020-10-20
wangzhaotongalex 2020-10-20
JohnYork 2020-10-16
Julyth 2020-10-16
laisean 2020-09-27
flycappuccino 2020-09-27
liguojia 2020-09-27
wangzhaotongalex 2020-09-22
流年浅滩 2020-10-23
liujianhua 2020-10-22
woaimeinuo 2020-10-21
tufeiax 2020-09-03
laisean 2020-09-01
vvu 2020-09-16
Yyqingmofeige 2020-08-18