Makefile用于小程序

时间:2014-11-13 05:21:21

标签: c++ makefile

all: ship

ship: testShip.o ship.o
        g++ -g -Wall -o ship testShip.o ship.o 

testShip.o: testShip.cpp
        g++ -g -Wall -c testShip.cpp

ship.o: ship.cpp
        g++ -g -Wall -c ship.cpp 

clean:
        rm -rf *.o ship 

有谁知道我为什么会收到错误:" Makefile:1:***缺少分隔符。停止。&#34 ;? 我用Google搜索,并在每行开头后放了一个标签。谢谢!

0 个答案:

没有答案