Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 1  Line 1 
1  VERSION = 1  VERSION = 1
2  PATCHLEVEL = 13  PATCHLEVEL = 16
3  SUBLEVEL = 4  SUBLEVEL = 1
4  EXTRAVERSION =  EXTRAVERSION =
5  NAME = Unnamed  NAME = Unnamed
6    
# Line 168  ifeq ($(CROSS_COMPILE),) Line 168  ifeq ($(CROSS_COMPILE),)
168  CROSS_COMPILE := $(shell grep ^CONFIG_CROSS_COMPILER_PREFIX .config 2>/dev/null)  CROSS_COMPILE := $(shell grep ^CONFIG_CROSS_COMPILER_PREFIX .config 2>/dev/null)
169  CROSS_COMPILE := $(subst CONFIG_CROSS_COMPILER_PREFIX=,,$(CROSS_COMPILE))  CROSS_COMPILE := $(subst CONFIG_CROSS_COMPILER_PREFIX=,,$(CROSS_COMPILE))
170  CROSS_COMPILE := $(subst ",,$(CROSS_COMPILE))  CROSS_COMPILE := $(subst ",,$(CROSS_COMPILE))
171    #")
172  endif  endif
173    
174  # SUBARCH tells the usermode build what the underlying arch is.  That is set  # SUBARCH tells the usermode build what the underlying arch is.  That is set
# Line 357  scripts_basic: Line 358  scripts_basic:
358  # To avoid any implicit rule to kick in, define an empty command.  # To avoid any implicit rule to kick in, define an empty command.
359  scripts/basic/%: scripts_basic ;  scripts/basic/%: scripts_basic ;
360    
361    # bbox: we have helpers in applets/
362    # we depend on scripts_basic, since scripts/basic/fixdep
363    # must be built before any other host prog
364    PHONY += applets_dir
365    applets_dir: scripts_basic
366     $(Q)$(MAKE) $(build)=applets
367    
368    applets/%: applets_dir ;
369    
370  PHONY += outputmakefile  PHONY += outputmakefile
371  # outputmakefile generates a Makefile in the output directory, if using a  # outputmakefile generates a Makefile in the output directory, if using a
372  # separate output directory. This allows convenient use of make in the  # separate output directory. This allows convenient use of make in the
# Line 796  ifneq ($(KBUILD_MODULES),) Line 806  ifneq ($(KBUILD_MODULES),)
806   $(Q)rm -f $(MODVERDIR)/*   $(Q)rm -f $(MODVERDIR)/*
807  endif  endif
808    
809  archprepare: prepare1 scripts_basic  archprepare: prepare1 scripts_basic applets_dir
810    
811  prepare0: archprepare FORCE  prepare0: archprepare FORCE
812   $(Q)$(MAKE) $(build)=.   $(Q)$(MAKE) $(build)=.

Legend:
Removed from v.983  
changed lines
  Added in v.984