新手啊,大神们帮帮忙啊
/home 下有a.c文件,Makefile, /home/a下有b.c,Makeflle
/home Makefile中内容:
VPATH=/home/a
obj=a.o b.o
.PHONY :all
all ;test $(obj)
test :$(obj)
cc -o test a.o a/b.o
b.o :b.c
cd a && make
/home/a 中Makeflle 内容;
b.o :b.c
cc -c b.c
操作:
# cd /home
# make
出现:
cc -o test a.o a/b.o
cc: a/b.o 没有那个文件或目录
大家看看哪错的