1# 2# Makefile 3# 4# Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ 5# 6# This program is free software; you can redistribute it and/or 7# modify it under the terms of the GNU General Public License as 8# published by the Free Software Foundation; either version 2 of 9# the License, or (at your option) any later version. 10# 11# This program is distributed "as is" WITHOUT ANY WARRANTY of any 12# kind, whether express or implied; without even the implied warranty 13# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14# GNU General Public License for more details. 15# 16 17include $(TOPDIR)/config.mk 18 19LIB = $(obj)lib$(BOARD).o 20 21ifdef CONFIG_SPL_BUILD 22COBJS := mux.o 23endif 24 25SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) 26OBJS := $(addprefix $(obj),$(COBJS)) 27SOBJS := $(addprefix $(obj),$(SOBJS)) 28 29$(LIB): $(obj).depend $(OBJS) $(SOBJS) 30 $(call cmd_link_o_target, $(OBJS) $(SOBJS)) 31 32clean: 33 rm -f $(SOBJS) $(OBJS) 34 35distclean: clean 36 rm -f $(LIB) core *.bak $(obj).depend 37 38######################################################################### 39 40# defines $(obj).depend target 41include $(SRCTREE)/rules.mk 42 43sinclude $(obj).depend 44 45######################################################################### 46