u-boot-brain/board/iphase4539/Makefile

31 lines
675 B
Makefile
Raw Normal View History

2002-03-09 06:31:05 +09:00
#
# (C) Copyright 2006
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
2002-03-09 06:31:05 +09:00
# (C) Copyright 2002 Wolfgang Grandegger <wg@denx.de>
#
# SPDX-License-Identifier: GPL-2.0+
2002-03-09 06:31:05 +09:00
#
include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).o
COBJS := $(BOARD).o flash.o
2002-03-09 06:31:05 +09:00
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
2002-03-09 06:31:05 +09:00
$(LIB): $(obj).depend $(OBJS)
$(call cmd_link_o_target, $(OBJS))
2002-03-09 06:31:05 +09:00
#########################################################################
# defines $(obj).depend target
include $(SRCTREE)/rules.mk
2002-03-09 06:31:05 +09:00
sinclude $(obj).depend
2002-03-09 06:31:05 +09:00
#########################################################################