Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/Makefile


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/Makefile

    r3085 r3232  
    11VERSION = 1
    2 PATCHLEVEL = 18
    3 SUBLEVEL = 5
    4 EXTRAVERSION = -rPBREV
     2PATCHLEVEL = 21
     3SUBLEVEL = 1
     4EXTRAVERSION =
    55NAME = Unnamed
    66
     
    298298OBJCOPY     = $(CROSS_COMPILE)objcopy
    299299OBJDUMP     = $(CROSS_COMPILE)objdump
     300PKG_CONFIG  ?= $(CROSS_COMPILE)pkg-config
    300301AWK     = awk
    301302GENKSYMS    = scripts/genksyms/genksyms
     
    515516# If kconfig.d is missing then we are probarly in a cleaned tree so
    516517# we execute the config step to be sure to catch updated Kconfig files
    517 include/autoconf.h: .kconfig.d .config $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) gen_build_files
     518include/autoconf.h: .kconfig.d .config $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) | gen_build_files
    518519    $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
    519520
     
    964965MRPROPER_DIRS  += include/config include2
    965966MRPROPER_FILES += .config .config.old include/asm .version .old_version \
     967          include/NUM_APPLETS.h \
    966968          include/autoconf.h \
    967969          include/bbconfigopts.h \
     970          include/bbconfigopts_bz2.h \
    968971          include/usage_compressed.h \
    969972          include/applet_tables.h \
     973          include/applets.h \
     974          include/usage.h \
    970975          applets/usage \
    971976          .kernelrelease Module.symvers tags TAGS cscope* \
     
    10091014    $(call cmd,rmdirs)
    10101015    $(call cmd,rmfiles)
    1011     @find -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f
    1012     @find -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f
     1016    @find . -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f
     1017    @find . -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f
    10131018
    10141019# distclean
     
    10391044# ---------------------------------------------------------------------------
    10401045
    1041 boards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig)
     1046boards := $(wildcard $(srctree)/configs/*_defconfig)
    10421047boards := $(notdir $(boards))
    10431048
     
    11271132        -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
    11281133        -type f -print | xargs rm -f
    1129 
    1130 help:
    1131     @echo  '  Building external modules.'
    1132     @echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
    1133     @echo  ''
    1134     @echo  '  modules         - default target, build the module(s)'
    1135     @echo  '  modules_install - install the module'
    1136     @echo  '  clean           - remove generated files in module directory only'
    1137     @echo  ''
    11381134
    11391135# Dummies...
Note: See TracChangeset for help on using the changeset viewer.