diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-07-07 00:45:03 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-07-07 00:45:03 +0200 | 
| commit | 3ab4827cbe409488ebea1a2ee5094783f2672214 (patch) | |
| tree | 8045224f55395bd057864905aba95339cc15c400 | |
| parent | 01981269c17101e8d2e06f517b812c415ae1a150 (diff) | |
| download | olio-uboot-2014.01-3ab4827cbe409488ebea1a2ee5094783f2672214.tar.xz olio-uboot-2014.01-3ab4827cbe409488ebea1a2ee5094783f2672214.zip | |
SH: fix out of tree building
Signed-off-by: Wolfgang Denk <wd@denx.de>
| -rw-r--r-- | Makefile | 25 | 
1 files changed, 14 insertions, 11 deletions
| @@ -2913,43 +2913,46 @@ atngw100_config	:	unconfig  ## sh3 (Renesas SuperH)  #########################################################################  mpr2_config: unconfig -	@ >include/config.h -	@echo "#define CONFIG_MPR2 1" >> include/config.h +	@mkdir -p $(obj)include +	@echo "#define CONFIG_MPR2 1" > $(obj)include/config.h  	@$(MKCONFIG) -a $(@:_config=) sh sh3 mpr2  ms7720se_config: unconfig -	@echo "#define CONFIG_MS7720SE 1" > include/config.h +	@mkdir -p $(obj)include +	@echo "#define CONFIG_MS7720SE 1" > $(obj)include/config.h  	@$(MKCONFIG) -a $(@:_config=) sh sh3 ms7720se  #########################################################################  ## sh4 (Renesas SuperH)  #########################################################################  ms7750se_config: unconfig +	@mkdir -p $(obj)include  	@echo "#define CONFIG_MS7750SE 1" > $(obj)include/config.h  	@$(MKCONFIG) -a $(@:_config=) sh sh4 ms7750se  ms7722se_config :	unconfig +	@mkdir -p $(obj)include  	@echo "#define CONFIG_MS7722SE 1" > $(obj)include/config.h  	@$(MKCONFIG) -a $(@:_config=) sh sh4 ms7722se  MigoR_config :       unconfig -	@ >include/config.h -	@echo "#define CONFIG_MIGO_R 1" >> include/config.h +	@mkdir -p $(obj)include +	@echo "#define CONFIG_MIGO_R 1" > $(obj)include/config.h  	@./mkconfig -a $(@:_config=) sh sh4 MigoR  r7780mp_config: unconfig -	@ >include/config.h -	@echo "#define CONFIG_R7780MP 1" >> include/config.h +	@mkdir -p $(obj)include +	@echo "#define CONFIG_R7780MP 1" > $(obj)include/config.h  	@./mkconfig -a $(@:_config=) sh sh4 r7780mp  r2dplus_config  :   unconfig -	@ >include/config.h -	@echo "#define CONFIG_R2DPLUS 1" >> include/config.h +	@mkdir -p $(obj)include +	@echo "#define CONFIG_R2DPLUS 1" > $(obj)include/config.h  	@./mkconfig -a $(@:_config=) sh sh4 r2dplus  sh7763rdp_config  :   unconfig -	@ >include/config.h -	@echo "#define CONFIG_SH7763RDP 1" >> include/config.h +	@mkdir -p $(obj)include +	@echo "#define CONFIG_SH7763RDP 1" > $(obj)include/config.h  	@./mkconfig -a $(@:_config=) sh sh4 sh7763rdp  #======================================================================== |