X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=Makefile;h=f77e85108cd6dde37b3b5bad732576650bee9f28;hb=403a5a298eaa5d1d827ad6ebbf38a7b765ba5b44;hp=5cc4ab2913976d32c426928761edb247d2c4f2ed;hpb=3240474c23bf4f47536a854693b4cbacb54b9b04;p=oweals%2Fbusybox.git diff --git a/Makefile b/Makefile index 5cc4ab291..f77e85108 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ VERSION = 1 -PATCHLEVEL = 8 +PATCHLEVEL = 10 SUBLEVEL = 0 EXTRAVERSION = .svn NAME = Unnamed @@ -437,7 +437,6 @@ libs-y := \ editors/ \ findutils/ \ init/ \ - ipsvd/ \ libbb/ \ libpwdgrp/ \ loginutils/ \ @@ -446,12 +445,14 @@ libs-y := \ networking/ \ networking/libiproute/ \ networking/udhcp/ \ + printutils/ \ procps/ \ runit/ \ selinux/ \ shell/ \ sysklogd/ \ util-linux/ \ + util-linux/volume_id/ \ endif # KBUILD_EXTMOD @@ -571,6 +572,7 @@ quiet_cmd_busybox__ ?= LINK $@ cmd_busybox__ ?= $(srctree)/scripts/trylink \ "$@" \ "$(CC)" \ + "$(CFLAGS)" \ "$(LDFLAGS) $(EXTRA_LDFLAGS)" \ "$(core-y)" \ "$(libs-y)" \ @@ -729,7 +731,7 @@ localver = $(subst $(space),, \ # Currently, only git is supported. # Other SCMs can edit scripts/setlocalversion and add the appropriate # checks as needed. -ifdef CONFIG_LOCALVERSION_AUTO +ifdef _BB_DISABLED_CONFIG_LOCALVERSION_AUTO _localver-auto = $(shell $(CONFIG_SHELL) \ $(srctree)/scripts/setlocalversion $(srctree)) localver-auto = $(LOCALVERSION)$(_localver-auto) @@ -842,7 +844,7 @@ depend dep: # --------------------------------------------------------------------------- # Modules -ifdef CONFIG_MODULES +ifdef _BB_DISABLED_CONFIG_MODULES # By default, build modules as well @@ -928,6 +930,8 @@ MRPROPER_FILES += .config .config.old include/asm .version .old_version \ include/autoconf.h \ include/bbconfigopts.h \ include/usage_compressed.h \ + include/applet_tables.h \ + applets/usage \ .kernelrelease Module.symvers tags TAGS cscope* # clean - Delete most, but leave enough to build external modules @@ -970,7 +974,7 @@ distclean: mrproper @find $(srctree) $(RCS_FIND_IGNORE) \ \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ - -o -name '.*.rej' -o -size 0 \ + -o -name '.*.rej' -o -name '*.tmp' -o -size 0 \ -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \ -type f -print | xargs rm -f