为简单起见,假设我有以下文件夹:
./src/
有许多 .c 文件./obj/
有许多 .obj 文件./output/
使用我想要构建的二进制文件
我的makefile如下:
all: init mybin
# init commands
init:
mkdir obj
mkdir output
mybin: project1 project2 project3
$(CC) src/misc.c ... etc
$(LK) obj/first.obj obj/second.obj obj/third.obj obj/four.obj obj/five.obj obj/six.obj obj/seven.obj obj/eight.obj obj/nine.obj -o output/myapp.bin
project1: obj/first.obj obj/second.obj obj/third.obj
obj/first.obj: src/first.c
$(CC) first.c ... etc
obj/second.obj: src/second.c
$(CC) obj/second.c ... etc
obj/third.obj: src/third.c
$(CC) obj/third.c ... etc
project2: obj/four.obj obj/five.obj obj/six.obj
obj/four.obj: src/four.c
$(CC) four.c ... etc
obj/five.obj: src/five.c
$(CC) obj/five.c ... etc
obj/six.obj: src/six.c
$(CC) obj/six.c ... etc
project3: obj/seven.obj obj/eight.obj obj/nine.obj
obj/seven.obj: src/seven.c
$(CC) seven.c ... etc
obj/eight.obj: src/eight.c
$(CC) obj/eight.c ... etc
obj/nine.obj: src/nine.c
$(CC) obj/nine.c ... etc
我第一次跑make all
,所有编译的东西都找到了。然后我做了:
$ touch src/four.c
$ make all
$
但是make
没有编译任何东西就退出了。我猜它没有检测到其中一个 .c 文件已更改,但是我看不出我的依赖项有什么问题。
我所期望的:
touch
ingsrc/four.c
应该标记为obj/four.obj
过时的,project2
因此也标记为mybin
过时的。这个链应该会触发一个新的src/four.c
to编译,obj/four.obj
然后是整个项目的一个新的链接。