make:找不到makedepend

时间:2013-02-06 11:06:18

标签: c makefile

我正在尝试运行以下makefile

CMDLINE_SRC=$(wildcard commandLine/*.c)
CMDLINE_OBJS = $(CMDLINE_SRC:.c=.o)
EXECUTABLES = $(CMDLINE_SRC:.c=)

LIB_SRC=$(wildcard c/*.c)
LIB_OBJ = $(LIB_SRC:.c=.o)
LIB_OUT = lib/libclinrisk.a

INCLUDES = -I include

# compiler
CC = gcc
CCFLAGS = 
LDFLAGS = 

# library paths
LIBS = -Llib -lclinrisk -lm

.SUFFIXES: .c

default: dep executables

executables: $(EXECUTABLES)
    cp $(EXECUTABLES) executables

$(EXECUTABLES): $(LIB_OUT)

.c:
    $(CC) $(INCLUDES) $(LDFLAGS) $< -o $@ $(LIBS)

.c.o:
    $(CC) $(INCLUDES) $(CCFLAGS) -c $< -o $@

$(LIB_OUT): $(LIB_OBJ)
    ar rcs $(LIB_OUT) $(LIB_OBJ)

depend: dep

dep:
    makedepend -- $(CFLAGS) -- -I /usr/include/linux $(INCLUDES) $(LIB_SRC)

clean:
    rm -f $(LIB_OBJ) $(LIB_OUT) Makefile.bak
    rm -f $(CMDLINE_OBJ) $(CMDLINE_PROGS) 
    rm -f executables/*

# DO NOT DELETE

并收到以下错误消息:

$ make
makedepend --  -- -M
make: makedepend: Command not found
make: *** [dep] Error 127

我认为我可能没有makedepend install,好像我在输入后按Tab键获取:

$ make <TAB>
clean        default      dep          depend       executables  makefile

如果我没有安装makedepend,我该如何安装它并指向

makedepend -- $(CFLAGS) -- -I /usr/include/linux $(INCLUDES) $(LIB_SRC)

需要指出什么?

谢谢!

更新:Davides的回答解决了这个问题...

然而,我现在坚持:

$ make
makedepend --  -- -I /usr/include/linux -I include 
cp  executables
cp: missing destination file operand after `executables'
Try `cp --help' for more information.
make: *** [executables] Error 1

我怀疑这是一个实际的makefile的问题....

1 个答案:

答案 0 :(得分:3)

您错过了makedepend工具。

按照以下说明编译源代码(因此您是独立于发行版)来安装它:

Download and install makedepend