Makefile:make期间出错

时间:2013-06-26 06:10:47

标签: linux makefile

我有以下两个makefile:

Makefile1:

SUBDIRS = src
SDIRS=src
TOP?=.. 
RECURSIVE_MAKE= [ -n "$(SDIRS)" ] && for i in $(SDIRS) ; do \
            (cd $$i && echo "making $$target in $(DIR)/$$i..." && \
            $(MAKE) -e TOP=$(TOP)/.. $$target INCLUDES='$(INCLUDES)') || exit 1; \
        done;

subdirs:
    @target=all; $(RECURSIVE_MAKE)

all: subdirs

include $(BUILD_TOP)/build_control/symstream/subdirs.mk

Makefile2(subdirs.mk):

#   This is a stand-alone file to distribute targets to
#   sub-directories. Include this file alone.  

#  Make bug: It loses track of if/endif over a $(eval) call.
ifndef __subdirs_include
__subdirs_include = yes

#   This only works for the standard targets defined in $(TARGETS)
#   in utils.mk. However this list can be extended with +=.

install:: install-hdrs 

include $(BUILD_TOP)/build_control/symstream/utils.mk
include $(BUILD_TOP)/build_control/symstream/platform.mk

#  This creates a recursion rule for each pair of target and subdirectory.
#  The target for doing T in directory D is named T+D. 
#  If there is a "$(D_needs) = subdirs" then the subdirs become prerequisites
#  of D.
define __target_subdir
.PHONY:: $(1)+$(2)
$(1)+$(2) :: $(3); +$(MAKE) -C $(2) $(1)
endef

$(foreach t,$(TARGETS),\
    $(foreach d,$(strip $(SUBDIRS) $(SUBDIRS_y)),\
    $(eval $(call __target_subdir,$(t),$(d),$(patsubst %,$(t)+%,$($(d)_needs))))))

$(foreach t,$(TARGETS),\
    $(foreach d,$(strip $(SUBDIRS) $(SUBDIRS_y)),$(eval $(t)::$(t)+$(d))))


endif # __subdirs_include

执行Makefile1时出现以下错误:

subdirs.mk:30: *** target file `all' has both : and :: entries.  Stop.

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

您应该发布subdirs.mk以确定,但似乎您有普通和双列 目标all的规则。

来自GNU make manual

  

当目标出现在多个规则中时,所有规则必须是   相同类型:所有普通或全部双结肠。

相关问题