From 854a2397d4cdb48f64b430698a73af93fc86658f Mon Sep 17 00:00:00 2001 From: Philipp Kern Date: Fri, 16 Aug 2013 11:57:17 +0200 Subject: [PATCH] Makefile: accept LDFLAGS for linking --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3552fe4..a84a721 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ all: cubemap %.pb.o: %.pb.cc $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $< cubemap: $(OBJS) - $(CXX) -o cubemap $(OBJS) $(LDLIBS) + $(CXX) -o cubemap $(OBJS) $(LDLIBS) $(LDFLAGS) DEPS=$(OBJS:.o=.d) -include $(DEPS) -- 2.39.2