A.编译cpp2html.c以生成cpp2html.o

时间:2015-12-03 01:12:14

标签: unix gcc makefile

Your makefile does too much work when only cpp2html.c has been changed:
gcc -g -c cpp2html.c
gcc -g cpp2html.o lex.yy.o
gcc -g -DDEBUG cpp2html.o lex.yy.o -o cpp2html

不起作用,我几乎尝试了每一个序列。我的代码如下:

cpp2html: cpp2html.o lex.yy.o
        gcc {g cpp2html.o lex.yy.o
        gcc -g -DDEBUG cpp2html.o lex.yy.o -o cpp2html
cpp2html.o: cpp2html.c
        gcc -g  -c cpp2html.c
lex.yy.c: cppscanner.l
        flex cppscanner.l
lex.yy.o: lex.yy.c
        gcc -g -c lex.yy.c

1 个答案:

答案 0 :(得分:0)

the comments中所述,取出第一个gcc可以解决问题。