projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5df1cd2
)
Put the linker flags after the source files.
author
Daniel Carl
<danielcarl@gmx.de>
Thu, 28 Jun 2018 09:52:43 +0000
(11:52 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Thu, 28 Jun 2018 09:52:43 +0000
(11:52 +0200)
tests/Makefile
patch
|
blob
|
history
diff --git
a/tests/Makefile
b/tests/Makefile
index
25b1169
..
097a3cb
100644
(file)
--- a/
tests/Makefile
+++ b/
tests/Makefile
@@
-12,7
+12,7
@@
${TEST_PROGS}: ../$(SRCDIR)/vimb.so
test-%: test-%.c
@echo "${CC} $@"
- $(Q)$(CC) $(CPPFLAGS) $(CFLAGS)
$(LDFLAGS) -o $@ $< ../$(SRCDIR)/vimb.so
+ $(Q)$(CC) $(CPPFLAGS) $(CFLAGS)
-o $@ $< ../$(SRCDIR)/vimb.so $(LDFLAGS)
clean:
$(RM) $(TEST_PROGS)