免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2197 | 回复: 3
打印 上一主题 下一主题

[C] vpath of makefile [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-09-28 17:16 |只看该作者 |倒序浏览
//目录结构

test/makefile
test/aa
test/bb/a.c

//a.c内容
#include <stdio.h>

int main()
{
    printf("hello makefile\n");
    return ( 0 );
}


//makefile
vpath %.c aa:bb
files:a.o
        gcc -o files a.o

a.o:a.c
       gcc -c a.c

clean:
        rm files.exe
        rm `find ./ -name "*\.o" -depth`


当执行make时候报错:
$ make
gcc -c a.c
gcc: a.c: No such file or d
gcc: no input files
make: *** [a.o] Error 1

跟踪错误:
$ make --debug=v
GNU Make 3.81
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i686-pc-cygwin
Reading makefiles...
Reading makefile `makefile'...
Updating goal targets....
Considering target file `files'.
File `files' does not exist.
  Considering target file `a.o'.
   File `a.o' does not exist.
    Considering target file `a.c'.
     Finished prerequisites of target file `a.c'.
    No need to remake target `a.c'; using VPATH name `bb/a.c'.
   Finished prerequisites of target file `a.o'.
  Must remake target `a.o'.

gcc -c a.c
gcc: a.c: No such file or directory
gcc: no input files
make: *** [a.o] Error 1

然后注释掉 a.o:a.c部分后正常
vpath %.c aa:bb
files:a.o
        gcc -o files a.o

#a.o:a.c
#       gcc -c a.c

clean:
        rm files.exe
        rm `find ./ -name "*\.o" -depth`


或者注释掉vpath,将a.c拷贝到父目录也是正常的。
#vpath %.c aa:bb
files:a.o
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;gcc -o files a.o

a.o:a.c
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;gcc -c a.c

clean:
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rm files.exe
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rm `find ./ -name "*\.o" -depth`

不是很清楚vpath到底做了什么?使得有这样的调试信息产生……
No need to remake target `a.c'; using VPATH name `bb/a.c'.

论坛徽章:
0
2 [报告]
发表于 2008-09-28 17:38 |只看该作者

  1. a.o:a.c
  2.         gcc -c $<
复制代码

论坛徽章:
0
3 [报告]
发表于 2008-10-07 11:54 |只看该作者
原帖由 lgfang 于 2008-9-28 17:38 发表

a.o:a.c
        gcc -c $<


确实,改成这样就对了。我是没把参考文档看完呢?还是应该记住这个事实。。。

论坛徽章:
0
4 [报告]
发表于 2008-10-07 13:05 |只看该作者
原帖由 luckydog1984 于 2008-10-7 11:54 发表


确实,改成这样就对了。我是没把参考文档看完呢?还是应该记住这个事实。。。

先记住这个事实,然后弄明白为什么这样改就对了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP