blob: 678eb2ae0687355eea9a1ef0fe4b2f845e8cf46b [file] [log] [blame]
Timur Tabic59e1b42010-06-14 15:28:24 -05001#
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).a
13
14COBJS-y += $(BOARD).o
15COBJS-y += ddr.o
16COBJS-y += law.o
17COBJS-y += tlb.o
18
Timur Tabid5e01e42010-09-24 01:25:53 +020019COBJS-$(CONFIG_FSL_DIU_FB) += diu.o
20
Timur Tabic59e1b42010-06-14 15:28:24 -050021SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
22OBJS := $(addprefix $(obj),$(COBJS-y))
23SOBJS := $(addprefix $(obj),$(SOBJS))
24
25$(LIB): $(obj).depend $(OBJS) $(SOBJS)
26 $(AR) $(ARFLAGS) $@ $(OBJS)
27
28clean:
29 rm -f $(OBJS) $(SOBJS)
30
31distclean: clean
32 rm -f $(LIB) core *.bak .depend
33
34#########################################################################
35
36# defines $(obj).depend target
37include $(SRCTREE)/rules.mk
38
39sinclude $(obj).depend
40
41#########################################################################