u-boot-brain/board/esd/hh405/Makefile

35 lines
764 B
Makefile
Raw Normal View History

2004-12-17 03:23:14 +09:00
#
# (C) Copyright 2000-2006
2004-12-17 03:23:14 +09:00
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# SPDX-License-Identifier: GPL-2.0+
2004-12-17 03:23:14 +09:00
#
include $(TOPDIR)/config.mk
ifneq ($(OBJTREE),$(SRCTREE))
$(shell mkdir -p $(obj)../common)
endif
2004-12-17 03:23:14 +09:00
LIB = $(obj)lib$(BOARD).o
2004-12-17 03:23:14 +09:00
COBJS = $(BOARD).o flash.o \
../common/misc.o \
../common/esd405ep_nand.o \
../common/auto_update.o
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
2004-12-17 03:23:14 +09:00
$(LIB): $(OBJS) $(SOBJS)
$(call cmd_link_o_target, $(OBJS))
2004-12-17 03:23:14 +09:00
#########################################################################
# defines $(obj).depend target
include $(SRCTREE)/rules.mk
2004-12-17 03:23:14 +09:00
sinclude $(obj).depend
2004-12-17 03:23:14 +09:00
#########################################################################