mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-25 01:58:13 +01:00 
			
		
		
		
	Now we are ready to switch over to real Kbuild.
This commit disables temporary scripts:
  scripts/{Makefile.build.tmp, Makefile.host.tmp}
and enables real Kbuild scripts:
  scripts/{Makefile.build,Makefile.host,Makefile.lib}.
This switch is triggered by the line in scripts/Kbuild.include
  -build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build.tmp obj
  +build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
We need to adjust some build scripts for U-Boot.
But smaller amount of modification is preferable.
Additionally, we need to fix compiler flags which are
locally added or removed.
In Kbuild, it is not allowed to change CFLAGS locally.
Instead, ccflags-y, asflags-y, cppflags-y,
CFLAGS_$(basetarget).o, CFLAGS_REMOVE_$(basetarget).o
are prepared for that purpose.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Tested-by: Gerhard Sittig <gsi@denx.de>
		
	
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			417 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			417 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # (C) Copyright 2000-2006
 | |
| # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | |
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| #ccflags-y += -DET_DEBUG -DDEBUG
 | |
| 
 | |
| obj-$(CONFIG_PARTITIONS) 	+= part.o
 | |
| obj-$(CONFIG_MAC_PARTITION)   += part_mac.o
 | |
| obj-$(CONFIG_DOS_PARTITION)   += part_dos.o
 | |
| obj-$(CONFIG_ISO_PARTITION)   += part_iso.o
 | |
| obj-$(CONFIG_AMIGA_PARTITION) += part_amiga.o
 | |
| obj-$(CONFIG_EFI_PARTITION)   += part_efi.o
 |