2 # Copyright 2010-2011 Freescale Semiconductor, Inc.
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)
10 include $(TOPDIR)/config.mk
12 LIB = $(obj)lib$(BOARD).o
18 SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
19 OBJS := $(addprefix $(obj),$(COBJS-y))
20 SOBJS := $(addprefix $(obj),$(SOBJS))
22 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
23 $(AR) $(ARFLAGS) $@ $(OBJS)
25 #########################################################################
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
30 sinclude $(obj).depend
32 #########################################################################