summaryrefslogtreecommitdiff
path: root/cpu/mcf532x/Makefile
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2007-08-18 21:56:57 +0200
committerWolfgang Denk <wd@denx.de>2007-08-18 21:56:57 +0200
commit909627dca4350fca789c117b028b686cfe53e716 (patch)
tree9ff1c96b5501884438605bd1814eadc03f02d8e1 /cpu/mcf532x/Makefile
parent8f22b671ebc4c625dbd58be19d844069dcc9660e (diff)
parent26667b7fa05a8bf2fc65fb9f3230b02b1a10c367 (diff)
Merge with /home/wd/git/u-boot/custodian/u-boot-coldfire
Diffstat (limited to 'cpu/mcf532x/Makefile')
-rw-r--r--cpu/mcf532x/Makefile48
1 files changed, 48 insertions, 0 deletions
diff --git a/cpu/mcf532x/Makefile b/cpu/mcf532x/Makefile
new file mode 100644
index 00000000000..6790d90f272
--- /dev/null
+++ b/cpu/mcf532x/Makefile
@@ -0,0 +1,48 @@
+#
+# (C) Copyright 2000-2004
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# See file CREDITS for list of people who contributed to this
+# project.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+
+include $(TOPDIR)/config.mk
+
+# CFLAGS += -DET_DEBUG
+
+LIB = lib$(CPU).a
+
+START =
+COBJS = cpu.o speed.o cpu_init.o interrupts.o
+
+SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
+START := $(addprefix $(obj),$(START))
+
+all: $(obj).depend $(START) $(LIB)
+
+$(LIB): $(OBJS)
+ $(AR) $(ARFLAGS) $@ $(OBJS)
+
+#########################################################################
+
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################