1# 2# Copyright 2010 Freescale Semiconductor, Inc. 3# 4# This program is free software; you can redistribute it and/or modify it 5# under the terms of the GNU General Public License as published by the Free 6# Software Foundation; either version 2 of the License, or (at your option) 7# any later version. 8# 9 10include $(TOPDIR)/config.mk 11 12LIB = $(obj)lib$(BOARD).o 13 14MINIMAL= 15 16ifdef CONFIG_SPL_BUILD 17ifdef CONFIG_SPL_INIT_MINIMAL 18MINIMAL=y 19endif 20endif 21 22ifdef MINIMAL 23 24COBJS-y += spl_minimal.o tlb.o law.o 25 26else 27COBJS-y += $(BOARD).o 28COBJS-y += ddr.o 29COBJS-y += law.o 30COBJS-y += tlb.o 31 32COBJS-$(CONFIG_FSL_DIU_FB) += diu.o 33endif 34 35SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) 36OBJS := $(addprefix $(obj),$(COBJS-y)) 37SOBJS := $(addprefix $(obj),$(SOBJS)) 38 39$(LIB): $(obj).depend $(OBJS) $(SOBJS) 40 $(call cmd_link_o_target, $(OBJS)) 41 42######################################################################### 43 44# defines $(obj).depend target 45include $(SRCTREE)/rules.mk 46 47sinclude $(obj).depend 48 49######################################################################### 50