u-boot/board/inka4x0/Makefile

29 lines
627 B
Makefile
Raw Normal View History

2004-12-16 15:52:40 +00:00
#
# (C) Copyright 2003-2009
2004-12-16 15:52:40 +00:00
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# SPDX-License-Identifier: GPL-2.0+
2004-12-16 15:52:40 +00:00
#
include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).o
2004-12-16 15:52:40 +00:00
COBJS := $(BOARD).o inkadiag.o
2004-12-16 15:52:40 +00:00
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
$(LIB): $(obj).depend $(OBJS)
$(call cmd_link_o_target, $(OBJS))
2004-12-16 15:52:40 +00:00
#########################################################################
# defines $(obj).depend target
include $(SRCTREE)/rules.mk
2004-12-16 15:52:40 +00:00
sinclude $(obj).depend
2004-12-16 15:52:40 +00:00
#########################################################################