introduce the concept of LDLIBS for additional libraries so that when we do the final...
authorMike Frysinger <vapier@gentoo.org>
Fri, 30 Mar 2007 05:44:15 +0000 (05:44 -0000)
committerMike Frysinger <vapier@gentoo.org>
Fri, 30 Mar 2007 05:44:15 +0000 (05:44 -0000)
Makefile
Makefile.flags

index 6a50a28..4f45ae8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -302,6 +302,8 @@ AFLAGS_KERNEL       =
 CFLAGS         := $(CFLAGS)
 CPPFLAGS       := $(CPPFLAGS)
 AFLAGS         := $(AFLAGS)
+LDFLAGS                := $(LDFLAGS)
+LDLIBS         :=
 
 # Read KERNELRELEASE from .kernelrelease (if it exists)
 KERNELRELEASE = $(shell cat .kernelrelease 2> /dev/null)
@@ -565,7 +567,8 @@ quiet_cmd_busybox__ ?= LINK    $@
       cmd_busybox__ ?= $(srctree)/scripts/trylink $(CC) $(LDFLAGS) \
       -o $@ -Wl,-M \
       -Wl,--warn-common -Wl,--sort-common -Wl,--gc-sections \
-      -Wl,--start-group $(busybox-all) -Wl,--end-group
+      -Wl,--start-group $(busybox-all) -Wl,--end-group \
+      $(LDLIBS)
 
 # Generate System.map
 quiet_cmd_sysmap = SYSMAP
index 487300d..e4cdc45 100644 (file)
@@ -56,15 +56,15 @@ LDFLAGS += -static
 endif
 
 ifeq ($(CONFIG_SELINUX),y)
-LDFLAGS += -lselinux -lsepol
+LDLIBS += -lselinux -lsepol
 endif
 
 ifeq ($(CONFIG_EFENCE),y)
-LDFLAGS += -lefence
+LDLIBS += -lefence
 endif
 
 ifeq ($(CONFIG_DMALLOC),y)
-LDFLAGS += -ldmalloc
+LDLIBS += -ldmalloc
 endif
 
 #LDFLAGS += -nostdlib