1# 2# Copyright 2008 Extreme Engineering Solutions, Inc. 3# Copyright 2007 Freescale Semiconductor, Inc. 4# (C) Copyright 2001-2006 5# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 6# 7# See file CREDITS for list of people who contributed to this 8# project. 9# 10# This program is free software; you can redistribute it and/or 11# modify it under the terms of the GNU General Public License as 12# published by the Free Software Foundation; either version 2 of 13# the License, or (at your option) any later version. 14# 15 16include $(TOPDIR)/config.mk 17 18LIB = $(obj)lib$(BOARD).a 19 20COBJS-y += $(BOARD).o 21COBJS-y += ddr.o 22COBJS-y += law.o 23COBJS-y += tlb.o 24 25SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) 26OBJS := $(addprefix $(obj),$(COBJS-y)) 27SOBJS := $(addprefix $(obj),$(SOBJS-y)) 28 29$(LIB): $(obj).depend $(OBJS) $(SOBJS) 30 $(AR) $(ARFLAGS) $@ $(OBJS) 31 32clean: 33 rm -f $(OBJS) $(SOBJS) 34 35distclean: clean 36 rm -f $(LIB) core *.bak .depend 37 38######################################################################### 39 40# defines $(obj).depend target 41include $(SRCTREE)/rules.mk 42 43sinclude $(obj).depend 44 45######################################################################### 46