summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-07 17:05:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-07 17:05:22 +0000
commit3240474c23bf4f47536a854693b4cbacb54b9b04 (patch)
tree7736932b581341b317aea5bd208f9e648e895055 /Makefile
parente747f62ed69504825beb2c52b8f0448b3d3b72ed (diff)
downloadbusybox-w32-3240474c23bf4f47536a854693b4cbacb54b9b04.tar.gz
busybox-w32-3240474c23bf4f47536a854693b4cbacb54b9b04.tar.bz2
busybox-w32-3240474c23bf4f47536a854693b4cbacb54b9b04.zip
reviving libbusybox, adding CONFIG_INDIVIDUAL part 1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 2dced88e4..5cc4ab291 100644
--- a/Makefile
+++ b/Makefile
@@ -568,11 +568,13 @@ busybox-all := $(core-y) $(libs-y)
568# Rule to link busybox - also used during CONFIG_KALLSYMS 568# Rule to link busybox - also used during CONFIG_KALLSYMS
569# May be overridden by arch/$(ARCH)/Makefile 569# May be overridden by arch/$(ARCH)/Makefile
570quiet_cmd_busybox__ ?= LINK $@ 570quiet_cmd_busybox__ ?= LINK $@
571 cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) $(LDFLAGS) $(EXTRA_LDFLAGS) \ 571 cmd_busybox__ ?= $(srctree)/scripts/trylink \
572 -o $@ -Wl,-Map -Wl,$@.map \ 572 "$@" \
573 -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \ 573 "$(CC)" \
574 -Wl,--start-group $(busybox-all) -Wl,--end-group \ 574 "$(LDFLAGS) $(EXTRA_LDFLAGS)" \
575 $(LDLIBS) 575 "$(core-y)" \
576 "$(libs-y)" \
577 "$(LDLIBS)"
576 578
577# Generate System.map 579# Generate System.map
578quiet_cmd_sysmap = SYSMAP 580quiet_cmd_sysmap = SYSMAP