当前位置: 技术问答>linux和unix
怎样用Makefile生成两个可执行文件?
来源: 互联网 发布时间:2015-12-29
本文导语: 有一个a.cpp和b.cpp两个源文件。如果生成两个可执行文件,makefile应该怎么写? | all:a b a:a.cpp g++ -o a a.cpp b:b.cpp g++ -o b b.cpp
有一个a.cpp和b.cpp两个源文件。如果生成两个可执行文件,makefile应该怎么写?
|
all:a b
a:a.cpp
g++ -o a a.cpp
b:b.cpp
g++ -o b b.cpp
a:a.cpp
g++ -o a a.cpp
b:b.cpp
g++ -o b b.cpp