u-boot-brain/post/rules.mk

31 lines
637 B
Makefile
Raw Normal View History

2002-08-28 02:36:41 +09:00
#
# (C) Copyright 2002-2006
2002-08-28 02:36:41 +09:00
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# SPDX-License-Identifier: GPL-2.0+
2002-08-28 02:36:41 +09:00
#
include $(TOPDIR)/config.mk
COBJS := $(COBJS-y)
AOBJS := $(AOBJS-y)
SRCS := $(AOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(AOBJS) $(COBJS))
LIB := $(obj)$(LIB)
2002-08-28 02:36:41 +09:00
CPPFLAGS += -I$(TOPDIR)
all: $(LIB)
$(LIB): $(obj).depend $(OBJS)
$(call cmd_link_o_target, $(OBJS))
2002-08-28 02:36:41 +09:00
#########################################################################
# defines $(obj).depend target
include $(SRCTREE)/rules.mk
2002-08-28 02:36:41 +09:00
sinclude $(obj).depend
2002-08-28 02:36:41 +09:00
#########################################################################