]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/armltd/integrator/Makefile
board: arm: convert makefiles to Kbuild style
[karo-tx-uboot.git] / board / armltd / integrator / Makefile
index 14d64b7e88d7feaac1ba10061a89bf96f7064c81..7e5f6b03fd85dbd94f4d640aaa38aa9d823e0c9e 100644 (file)
@@ -6,53 +6,11 @@
 # ARM Ltd.
 # Philippe Robin, <philippe.robin@arm.com>
 #
-# See file CREDITS for list of people who contributed to this
-# project.
+# SPDX-License-Identifier:     GPL-2.0+
 #
-# 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
-
-LIB    = $(obj)lib$(BOARD).a
-
-SOBJS-y        := lowlevel_init.o
-
-COBJS-y        := integrator.o
-COBJS-$(CONFIG_PCI) += pci.o
-COBJS-y += timer.o
-
-SRCS   := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
-COBJS  := $(addprefix $(obj),$(COBJS-y))
-SOBJS  := $(addprefix $(obj),$(SOBJS-y))
-
-$(LIB):        $(obj).depend $(COBJS) $(SOBJS)
-       $(AR) $(ARFLAGS) $@ $(COBJS) $(SOBJS)
-
-clean:
-       rm -f $(SOBJS) $(COBJS)
-
-distclean:     clean
-       rm -f $(LIB) core *.bak $(obj).depend
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
 
-sinclude $(obj).depend
+obj-y  := lowlevel_init.o
 
-#########################################################################
+obj-y  += integrator.o
+obj-$(CONFIG_PCI) += pci.o
+obj-y += timer.o