u-boot-brain/board/tqc/tqm834x/Makefile

33 lines
713 B
Makefile
Raw Normal View History

2005-10-12 02:09:42 +09:00
#
# (C) Copyright 2006
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
2006-10-09 07:42:01 +09:00
#
2005-10-12 02:09:42 +09:00
# Copyright 2004 Freescale Semiconductor, Inc.
#
# SPDX-License-Identifier: GPL-2.0+
2005-10-12 02:09:42 +09:00
#
include $(TOPDIR)/config.mk
LIB = $(obj)lib$(BOARD).o
2005-10-12 02:09:42 +09:00
COBJS-y += $(BOARD).o
COBJS-$(CONFIG_PCI) += pci.o
2005-10-12 02:09:42 +09:00
COBJS := $(COBJS-y)
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))
2005-10-12 02:09:42 +09:00
#########################################################################
# defines $(obj).depend target
include $(SRCTREE)/rules.mk
2005-10-12 02:09:42 +09:00
sinclude $(obj).depend
2005-10-12 02:09:42 +09:00
#########################################################################