1Add LDFLAGS variable to Makefile, make sure the extra linker flags can be passed. 2 3Upstream-Status: Pending 4 5Signed-off-by: Yi Zhao <yi.zhao@windriver.com> 6 7diff --git a/Makefile b/Makefile 8index 77f3364..c98083f 100644 9--- a/Makefile 10+++ b/Makefile 11@@ -18,7 +18,7 @@ clean: 12 13 zeroconf: zeroconf.o delay.o 14 $(Q)echo "Creating $@" 15- $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS) 16+ $(Q)$(CC) $(CFLAGS) ${LDFLAGS} -o $@ $^ $(LIBS) 17 18 19 # Automatic dependency generation 20