From e0e4dc7048535adbbdf3b7c6ed47e8182ac2e8ea Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Fri, 17 May 2013 21:44:21 +0900 Subject: [PATCH 1/1] (LDFLAGS): New variable. (libconcord.la): Use `LDFLAGS'. --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 4a2d67c..58e6a9e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2,6 +2,7 @@ CC = @CC@ DEFS = @DEFS@ LIBS = @LIBS@ CFLAGS = -I. @CFLAGS@ -c -Wall -Wmissing-prototypes $(DEFS) +LDFLAGS = @LDFLAGS@ LIBTOOL = @LIBTOOL@ @@ -59,7 +60,7 @@ all: libconcord.la libconcord.la: $(OBJS) $(LIBTOOL) --mode=link \ - $(CC) -o libconcord.la $(OBJS) $(LIBS) \ + $(CC) $(LDFLAGS) -o libconcord.la $(OBJS) $(LIBS) \ -rpath ${libdir} -version-info $(ABI_VERSION) \ -no-undefined -- 1.7.10.4