From: Brian Norris Date: Tue, 5 Mar 2013 03:51:49 +0000 (-0800) Subject: Makefile: use $+ variable X-Git-Tag: oopsla2013~159 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=56bd79d6fa2953585375f72cf061355fecd2c725;p=model-checker.git Makefile: use $+ variable --- 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