2013-10-17 08:34:47 +00:00
|
|
|
# our default target
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
|
|
|
LIB := $(obj)built-in.o
|
|
|
|
LIBGCC = $(obj)libgcc.o
|
|
|
|
SRCS :=
|
|
|
|
|
|
|
|
include Makefile
|
|
|
|
|
|
|
|
# Backward compatible: obj-y is preferable
|
|
|
|
COBJS := $(sort $(COBJS) $(COBJS-y))
|
|
|
|
SOBJS := $(sort $(SOBJS) $(SOBJS-y))
|
|
|
|
|
|
|
|
# Going forward use the following
|
|
|
|
obj-y := $(sort $(obj-y))
|
|
|
|
extra-y := $(sort $(extra-y))
|
|
|
|
lib-y := $(sort $(lib-y))
|
|
|
|
|
2013-10-17 11:38:51 +00:00
|
|
|
subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y)))
|
|
|
|
obj-y := $(patsubst %/, %/built-in.o, $(obj-y))
|
|
|
|
subdir-obj-y := $(filter %/built-in.o, $(obj-y))
|
|
|
|
subdir-obj-y := $(addprefix $(obj),$(subdir-obj-y))
|
|
|
|
|
2013-10-17 08:34:47 +00:00
|
|
|
SRCS += $(COBJS:.o=.c) $(SOBJS:.o=.S) \
|
|
|
|
$(wildcard $(obj-y:.o=.c) $(obj-y:.o=.S) $(lib-y:.o=.c) $(lib-y:.o=.S) $(extra-y:.o=.c) $(extra-y:.o=.S))
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS) $(obj-y))
|
|
|
|
|
|
|
|
LGOBJS := $(addprefix $(obj),$(sort $(GLSOBJS) $(GLCOBJS)) $(lib-y))
|
|
|
|
|
|
|
|
all: $(LIB) $(addprefix $(obj),$(extra-y))
|
|
|
|
|
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
|
|
|
$(call cmd_link_o_target, $(OBJS))
|
|
|
|
|
|
|
|
ifneq ($(strip $(lib-y)),)
|
|
|
|
all: $(LIBGCC)
|
|
|
|
|
|
|
|
$(LIBGCC): $(obj).depend $(LGOBJS)
|
|
|
|
$(call cmd_link_o_target, $(LGOBJS))
|
|
|
|
endif
|
|
|
|
|
2013-10-17 11:38:51 +00:00
|
|
|
ifneq ($(subdir-obj-y),)
|
|
|
|
# Descending
|
|
|
|
$(subdir-obj-y): $(subdir-y)
|
|
|
|
|
|
|
|
$(subdir-y): FORCE
|
|
|
|
$(MAKE) -C $@ -f $(TOPDIR)/scripts/Makefile.build
|
|
|
|
endif
|
|
|
|
|
2013-10-17 08:34:47 +00:00
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
# defines $(obj).depend target
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
sinclude $(obj).depend
|
|
|
|
|
|
|
|
#########################################################################
|
2013-10-17 11:38:51 +00:00
|
|
|
|
|
|
|
.PHONY: FORCE
|