]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/tqc/tqm834x/Makefile
blackfin: Move machine specific gpio_port_t structure back to blackfin arch folder.
[karo-tx-uboot.git] / board / tqc / tqm834x / Makefile
1 #
2 # (C) Copyright 2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # Copyright 2004 Freescale Semiconductor, Inc.
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB     = $(obj)lib$(BOARD).o
13
14 COBJS-y += $(BOARD).o
15 COBJS-$(CONFIG_PCI) += pci.o
16
17 COBJS   := $(COBJS-y)
18 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
19 OBJS    := $(addprefix $(obj),$(COBJS))
20 SOBJS   := $(addprefix $(obj),$(SOBJS))
21
22 $(LIB): $(obj).depend $(OBJS)
23         $(call cmd_link_o_target, $(OBJS))
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 #########################################################################