Makefile (68fb31706d50dd5d337cd7928aeb780358b910a5) Makefile (499cd8298628eeabf0eb5eb6525d4faa0eec80d8)
1#
2# arch/arm/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive

--- 182 unchanged lines hidden (view full) ---

191machine-$(CONFIG_ARCH_SOCFPGA) += socfpga
192machine-$(CONFIG_ARCH_SPEAR13XX) += spear13xx
193machine-$(CONFIG_ARCH_SPEAR3XX) += spear3xx
194machine-$(CONFIG_MACH_SPEAR600) += spear6xx
195machine-$(CONFIG_ARCH_ZYNQ) += zynq
196
197# Platform directory name. This list is sorted alphanumerically
198# by CONFIG_* macro name.
1#
2# arch/arm/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive

--- 182 unchanged lines hidden (view full) ---

191machine-$(CONFIG_ARCH_SOCFPGA) += socfpga
192machine-$(CONFIG_ARCH_SPEAR13XX) += spear13xx
193machine-$(CONFIG_ARCH_SPEAR3XX) += spear3xx
194machine-$(CONFIG_MACH_SPEAR600) += spear6xx
195machine-$(CONFIG_ARCH_ZYNQ) += zynq
196
197# Platform directory name. This list is sorted alphanumerically
198# by CONFIG_* macro name.
199plat-$(CONFIG_ARCH_MXC) += mxc
199plat-$(CONFIG_ARCH_OMAP) += omap
200plat-$(CONFIG_ARCH_S3C64XX) += samsung
200plat-$(CONFIG_ARCH_OMAP) += omap
201plat-$(CONFIG_ARCH_S3C64XX) += samsung
202plat-$(CONFIG_ARCH_ZYNQ) += versatile
201plat-$(CONFIG_PLAT_IOP) += iop
202plat-$(CONFIG_PLAT_NOMADIK) += nomadik
203plat-$(CONFIG_PLAT_ORION) += orion
204plat-$(CONFIG_PLAT_PXA) += pxa
205plat-$(CONFIG_PLAT_S3C24XX) += s3c24xx samsung
206plat-$(CONFIG_PLAT_S5P) += samsung
207plat-$(CONFIG_PLAT_SPEAR) += spear
208plat-$(CONFIG_PLAT_VERSATILE) += versatile

--- 76 unchanged lines hidden (view full) ---

285
286zImage Image xipImage bootpImage uImage: vmlinux
287 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
288
289zinstall uinstall install: vmlinux
290 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
291
292%.dtb: scripts
203plat-$(CONFIG_PLAT_IOP) += iop
204plat-$(CONFIG_PLAT_NOMADIK) += nomadik
205plat-$(CONFIG_PLAT_ORION) += orion
206plat-$(CONFIG_PLAT_PXA) += pxa
207plat-$(CONFIG_PLAT_S3C24XX) += s3c24xx samsung
208plat-$(CONFIG_PLAT_S5P) += samsung
209plat-$(CONFIG_PLAT_SPEAR) += spear
210plat-$(CONFIG_PLAT_VERSATILE) += versatile

--- 76 unchanged lines hidden (view full) ---

287
288zImage Image xipImage bootpImage uImage: vmlinux
289 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
290
291zinstall uinstall install: vmlinux
292 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@
293
294%.dtb: scripts
293 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
295 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@
294
295dtbs: scripts
296
297dtbs: scripts
296 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
298 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) dtbs
297
298# We use MRPROPER_FILES and CLEAN_FILES now
299archclean:
300 $(Q)$(MAKE) $(clean)=$(boot)
301
302# My testing targets (bypasses dependencies)
303bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage
304i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@

--- 17 unchanged lines hidden ---
299
300# We use MRPROPER_FILES and CLEAN_FILES now
301archclean:
302 $(Q)$(MAKE) $(clean)=$(boot)
303
304# My testing targets (bypasses dependencies)
305bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage
306i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@

--- 17 unchanged lines hidden ---