From 49f8d38d31a0085b223a4398d62059eb529ca35b Mon Sep 17 00:00:00 2001 From: Niko Liikanen Date: Tue, 5 Sep 2006 20:32:03 +0000 Subject: [PATCH] Add LDFLAGS to CXX when linking... --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1424119..8396a66 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ $(TMP): # Dynamic library $(TMP)/$(LIBFILE)$(SHARED): $(OBJS) echo "Compiling $(notdir $@)" - $(CXX) $^ -shared -o $@ $(LIB) + $(CXX) $^ -shared -o $@ $(LIB) $(LDFLAGS) # Static library $(TMP)/$(LIBFILE)$(STATIC): $(OBJS) -- 2.43.0