From 56bd79d6fa2953585375f72cf061355fecd2c725 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Mon, 4 Mar 2013 19:51:49 -0800 Subject: [PATCH] Makefile: use $+ variable --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea73d93..b653e76 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ docs: *.c *.cc *.h doxygen $(LIB_SO): $(OBJECTS) - $(CXX) $(SHARED) -o $(LIB_SO) $(OBJECTS) $(LDFLAGS) + $(CXX) $(SHARED) -o $(LIB_SO) $+ $(LDFLAGS) malloc.o: malloc.c $(CC) -fPIC -c malloc.c -DMSPACES -DONLY_MSPACES -DHAVE_MMAP=0 $(CPPFLAGS) -Wno-unused-variable -- 2.34.1