Make不编译好文件

时间:2015-08-15 08:48:53

标签: c makefile yacc flex-lexer

我遇到了Makefile的问题,它只是编译了很多次同一个文件。

以下是我的文件:

$ ls *
carnet.data  carnet.l  carnet.y  Makefile

struct:
carnet.c  carnet.h  ihm.c  ihm.h  struct.c  struct.h

这是我的Makefile:

CC      = gcc
LEX     = lex
YACC    = yacc
FLAGS   = -Wall -Wextra -Werror -O3 -g
ELIB    = -lfl # Flex library
TARGET  = carnet

SRC     = $(shell find struct/ -name "*.c")
OBJ     = $(SRC:.c=.o)
SRCL    = $(shell find -name "*.l")
OBJL    = lex.yy.o
SRCY    = $(shell find -name "*.y")
OBJY    = y.tab.o

all : $(TARGET)

$(TARGET) : $(OBJ) $(OBJY) $(OBJL)
    @echo "Linking"
    @echo $(SRC)
    @echo $(OBJ)
    @$(CC) $^ -o $@ $(FLAGS) $(ELIB)


$(OBJY) : $(SRCY)
    @echo $<
    @$(YACC) -d $<
    @$(CC) -c y.tab.c -o $@

$(OBJL) : $(SRCL)
    @echo $<
    @$(LEX) $<
    @$(CC) -c lex.yy.c -o $@

$(OBJ) : $(SRC)
    @echo $<
    $(CC) -c $< -o $@ $(FLAGS)

clean :
    rm y.tab.c $(OBJY) y.tab.h lex.yy.c $(OBJL)
    rm $(OBJ)

destroy :
    rm $(TARGET)

rebuilt : destroy mrpropper

mrpropper : all clean

这是我做'make'时的输出:

struct/struct.c
gcc -c struct/struct.c -o struct/struct.o -Wall -Wextra -Werror -O3 -g
struct/struct.c
gcc -c struct/struct.c -o struct/carnet.o -Wall -Wextra -Werror -O3 -g
struct/struct.c
gcc -c struct/struct.c -o struct/ihm.o -Wall -Wextra -Werror -O3 -g
carnet.y
carnet.l
Linking
struct/struct.c struct/carnet.c struct/ihm.c
struct/struct.o struct/carnet.o struct/ihm.o

正如我们所看到的,当我做'echo $(SRC)时,他找到了所有三个文件,但他只编译'struct.c'文件,我不明白为什么!

感谢您的帮助, 幻影

1 个答案:

答案 0 :(得分:2)

SRC     = $(shell find struct/ -name "*.c")

您在此处创建了一个列表,$(SRC)将为struct/struct.c struct/carnet.c struct/ihm.c。或者任何其他订单find可能会返回,但根据您的结果,这似乎是订单。

OBJ     = $(SRC:.c=.o)

这会创建修改后的列表struct/struct.o struct/carnet.o struct/ihm.o

$(OBJ) : $(SRC)
    @echo $<
    $(CC) -c $< -o $@ $(FLAGS)

我们继续,(部分,为清晰起见)扩展导致

struct/struct.o struct/carnet.o struct/ihm.o : struct/struct.c struct/carnet.c struct/ihm.c
    @echo $<
    $(CC) -c $< -o $@ $(FLAGS)

所以你有一个规则申请建立3个目标,很好。现在,$<扩展为第一个先决条件,此处为struct/struct.c

一种可能的(和常见的)解决方案,如果您使用make能力,例如 GNU make ,是使用模式规则而不是find - hack:

struct/%.o : struct/%.c
    @echo $<
    $(CC) -c $< -o $@ $(FLAGS)

请注意,通常情况下,您只需在Makefile中维护一个taget模块列表,通常是目标文件,如下所示:

OBJS:= struct/struct.o struct/carnet.o struct/ihm.o