projects
/
cubemap
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0bd253
)
Makefile: accept LDFLAGS for linking
author
Philipp Kern
<pkern@debian.org>
Fri, 16 Aug 2013 09:57:17 +0000
(11:57 +0200)
committer
Steinar H. Gunderson
<sgunderson@bigfoot.com>
Fri, 16 Aug 2013 11:50:21 +0000
(13:50 +0200)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
3552fe4
..
a84a721
100644
(file)
--- 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)